<!--
function validateLoginFormData(objForm) {
		//Dimension a variable to hold the boolean for the Field Blank Message.
		var bShowFieldBlankMessage;
		//Default of the show message is set to False.  This flag is set to true if
		//any of the fields are highlighted.
		bShowFieldBlankMessage = false;

		//Check for the Name of the UserID tag.
		if (objForm.txtUserID.value.length < 2){
			//find the Label tag with the ID=lblUserID, and set it to highlighted
			objForm.all.lblUserID.innerHTML = "User ID:  *";
			objForm.all.lblUserID.style.color = "Red";
			//Something is highlighted, so show the blank field message, set the flag to true.
			bShowFieldBlankMessage = true;
		}
		else{
			//else the lblUserID Label tag should not be highlighted:
			objForm.all.lblUserID.innerHTML = "User ID:";
			objForm.all.lblUserID.style.color = "";
		}

		//Check for the Name of the Password tag.
		if (objForm.txtPassword.value.length < 2){
			//find the Label tag with the ID=lblPassword, and set it to highlighted
			objForm.all.lblPassword.innerHTML = "Password:  *";
			objForm.all.lblPassword.style.color = "red";
			//Something is highlighted, so show the blank field message, set the flag to true.
			bShowFieldBlankMessage = true;
		}
		else{
			//else the lblPassword label tag should not be highlighted:
			objForm.all.lblPassword.innerHTML = "Password:";
			objForm.all.lblPassword.style.color = "";
		}

		if (bShowFieldBlankMessage == true) {
			//The flag is true, so show the hidden message and return false
			objForm.all.lblFieldBlankMessage.style.visibility = "visible";
			return false;
		}
		else{
			//The flag is false, so all fields validate, return true.
			return true;
		}
	}

	function resetLoginFormData(objForm){


		//set all the labels back to normal:  Do not specify a color so that the
		//style sheet will handle it.  Remove the Asterisk.
		objForm.all.lblUserID.style.color = "";
		objForm.all.lblUserID.innerHTML = "User ID:";
		objForm.all.lblPassword.style.color = "";
		objForm.all.lblPassword.innerHTML = "Password:";
		//Hide the hidden message again:
		objForm.all.lblFieldBlankMessage.style.visibility = "hidden";

		//get the cookie for the UserID on this machine.  This function will
		//automatically set the userID field with the User ID from the cookie.
		//getCookieUserID(objForm);
		//Set the password field to blank
		objForm.txtPassword.value = "";
		objForm.txtUserID.value = "";
		//Return false so that the built-in reset functionality does nothing.
		//If you do not return false, then the reset button will reset the UserID
		//information retrieved from the cookie.
		return false;
	}
	-->
