function Verify()
{
	if (Trim(document.frmlogin.txtUsername.value)== "")
	{
		alert ("Please Enter Username");
		document.frmlogin.txtUsername.focus();
		document.frmlogin.txtUsername.select();
		return false;
	}
	if (document.frmlogin.txtPassword.value == "")
	{
		alert ("Please Enter Password");
		document.frmlogin.txtPassword.focus();
		document.frmlogin.txtPassword.select();
		return false;
	}
	return true; 
}
function VerifyForgotPassword()
{
	if (Trim(document.frmclient.txtEmail.value) == "" ) 
	{
		alert("Please Enter Email address");
		document.frmclient.txtEmail.focus();
		return false;
	}
	if (!isEmail(document.frmclient.txtEmail.value))
	{
		alert ("Please Enter Proper Email");
		document.frmclient.txtEmail.focus();
		return false;
	}
	
	document.frmclient.hidAction.value = "SEND";	
	return true;
}


// JavaScript Document