function checkEmail(email)
{
	$.post('/ajax/password', {email:email}, passw);
}

function passw(data)
{
	if (data=='ERR')
	{
		$('#error').fadeIn(500);
	}	
	else
	{
		$('#email_div').html(data);
	}
}
