//	Project			: PUNJAB MARKFED
//	Company			: Milagro-Interactive
//	Purpose			: 
//	Coder			: Deepak Sharma
//	Page Description: This page consists the checks for Forgot.php

//**********************************************************************************************

		function chkLogin()
		{
			
	//**********************************************************************************************
			if (!isLength(document.frmLogin.txtUName)) 
			{				
				alert("User Name Field is Blank.Please enter a valid Value");
				document.frmLogin.txtUName.focus()
				return	
			}
	//**********************************************************************************************
			if (!isLength(document.frmLogin.txtPwd)) 
			{
				alert("Password Field is Blank.Please enter a valid Value");
				document.frmLogin.txtPwd.focus()
				return	
			}
	//**********************************************************************************************
			document.frmLogin.submit();		
		}

//**********************************************************************************************