// JavaScript Document
function validateemail()
	{
		var email=document.getElementById('forgotpw_email').value	;
		if(!emailverify(email))
		{
		alert('Please enter a valid email address');
		return false;
		}
		return true;
	}
function CheckKeyInfo1($char, $mozChar) {
if($mozChar != null)
	{ // Look for a Mozilla-compatible browser
	if($mozChar == 13) 
		{
		document.login.submit();
		}
	}
else 
	{ // Must be an IE-compatible Browser
	if($char == 13)
		{
		document.login.submit();
		}
	}

}

