function validateForm()
{
	var email;

	email = trim(document.frmPwd.txtEMail.value);
	
	//if both user name and password are blank
	
	if (email.length == 0 ) 
	{
		alert("Please provide your email address")
		document.frmPwd.txtEMail.focus();		
		return false;
		
	}			
	//Check for Minimum user name characters
	if (!check_email(email))
	{
		alert("Please provide your email address.");
		document.frmPwd.txtEMail.focus();
		return false;
	}
	
	return true;
}


