function checkEmail() {
	$("#email").blur(function()
	{
		$.post("/scripts/ajax-checkemail.php",{ email:$(this).val() } ,function(data)
        {
		  if(data=='yes')
		  {	
			/*
			$("#msgbox").show(function()
			{ 
			 $(this).html('');	
			});
			*/
         	$("#msgbox").hide();
          }
		  else
		  {
		  	$("#msgbox").show(function()
			{ 
			  $(this).html('Cette adresse email existe déjà (<a href="/fr/account/oubli-mot-de-passe.html">Oubli de mot de passe</a>)');
			  $("#email").focus(); 
			  $("#email").select(); 
			});		
		  }
        });
	});
}
