function VerifyUser()
{
	if (document.frmforgotpassword.txtUsername.value == "")
	{
		alert ("Please Enter Username");
		document.frmforgotpassword.txtUsername.focus();
		document.frmforgotpassword.txtUsername.select();
		return false;
	}	
	return true 
}