// JavaScript Document
	function validateInfo() {
		if (document.frmLogIn.txtUserName.value == '')
			alert("Incomplete Information\n\nPlease enter your registered username!");
		else if (document.frmLogIn.txtPassword.value == '')
			alert("Incomplete Information\n\nPlease enter your valid password!")
		else
			document.frmLogIn.submit();
	}	

