// JavaScript Document

function check_forgotpass(th)
{
	if (th.email.value.split(" ").join("").length <= 0)
	{
		alert ("Please enter your email!");
		th.email.focus();
		return false;
	}
	else if (!emailCheck(th.email.value))
	{
		alert ("Please enter valid email!");		
		th.email.focus();
		return false;	
	}
}
