//function that validates the login form from the admin side
function validateLoginForm()
{
	with(document.frmLogin)
	{
		if(isBlank(txtUsername.value))		//function comes from formvalidation.js
		{
			alert('Please Enter the correct username');
			txtUsername.select();
			txtUsername.focus();
			return false;			
		}
		
		if(isBlank(txtPassword.value))		//function comes from formvalidation.js
		{
			alert('Please Enter the Password');
			txtPassword.select();
			txtPassword.focus();
			return false;			
		}
		
	}
}