function show_create_account_form()
{
	$('#create_account_layer').show("slow");
}

function close_create_account_form()
{
	$('#create_account_layer').hide("slow");
	$('#create_account_msg').html('');
}

function create_account_async()
{
	email_value = document.getElementById('create_account_email').value;
	passwd_value = document.getElementById('create_account_passwd').value;
	
	$.post("create_account_async.php",{"email":email_value,"passwd":passwd_value},function(html) {
		if (html == 'OK')
		{
			$('#create_account_layer').hide("slow");
			$('#login_block').html('Votre compte a bien été créé.').show("slow");
			
		}
		else
		{
			$('#create_account_msg').html(html);
		}
	}
	);
}
