	function valLogin() {
		strUser = document.getElementById("strUser").value;
		strPassT = document.getElementById("strPassT").value;
		strError = "You did not properly fill out the following fields:";

		if (!strUser.length) strError = strError + "\nUser Name";
		if (!strPassT.length) strError = strError + "\nPassword";

		if (strError.length > 51) {
			alert( strError );
			return false;
		}
	}
