<!-- 
/*this script checks for values in UserID and password */
function checkFields() {
	UserIDSize = document.theForm.UserID.value.length;
	PasswordSize = document.theForm.Password.value.length;
	if (UserIDSize == 0){
	alert("You must enter your User ID");
	document.theForm.UserID.focus();
	return false;
	}
	else if (PasswordSize == 0){
	alert("You must enter your Password");
	document.theForm.Password.focus();
	return false;
	}
}	
	
// -->

