// JavaScript Document
function verify()
{
	if(document.frm_forgot_password.txt_email.value.length=="")
	{
		alert("Please Enter Email Address!");
		document.frm_forgot_password.txt_email.focus();
		return false;
	}
	else if(!validateEmail(document.frm_forgot_password.txt_email.value,1,0) || (document.frm_forgot_password.txt_email.value.length==0)){
		alert("Please Enter a Valid Email Address!");
		document.frm_forgot_password.txt_email.focus();		
		return false;
	}
	document.frm_forgot_password.action.value = 'change';
	return true;
}
