function idCheck() {
	
	$(".box_text").slideUp('fast', function() { 
		$(".subBox_ad").show();
	});
	
	$('#checker').attr('onsubmit', 'return false;');
	
	var id = $('#yahooid').val();

	if(id != 'Introdu id-ul aici!') {
	
	$('.bsend').attr('class', 'loader');
	
	if (document.getElementById('acord').checked) var acord = "on"; else var acord = "";
	
	$.get("check.php", { id: id, acord: acord, rand: Math.random() },
							function(data){
								$(".subBox_ad").hide();
								$(".box_text").slideDown('fast').html(data);
								$('.loader').attr('class', 'bsend');
								$('#checker').attr('onsubmit', 'idCheck(); return false;');
	});	
	
	$.get("friends.php", { act: 'add', id: id, rand: Math.random() },
							function(data){
								$(".friends").html(data);
	});	
	
	}
	
}

function friendCheck(id) {
	$('#yahooid').val(id);
		idCheck();
}

function friendDelete(id) {

	$.get("friends.php", { act: 'del', id: id, rand: Math.random() },
							function(data){
								$(".friends").html(data);
	});	

}
