	//Validate the login
	function validatetxtbxs(){
		if (document.Form1.UserName.value==""){
			alert("Enter User Name");
			document.Form1.UserName.focus();
			return false;
		}
		if (document.Form1.PassWord.value==""){
			alert("Enter Password");
			document.Form1.PassWord.focus();
			return false;
		}
		return true;
	}
	//END: Validate the login