function Sav_Click() {
	var	UserPswd = document.Surveyform.UserPswd.value;
	var AdoptHwy_Pswd = 'AaHAZ';
	//Password Suggestions:  AaHAZ, AaHVP, aZaaH -- Only Change with Adopt-a-Highway agreement.
	//alert (UserPswd);

	//-- Send validation messages and submit	

	//-- Warning if no response is entered.
	if (UserPswd == ""){
		alert('Please enter your logon ID.');
		document.Surveyform.UserPswd.value = "";
		document.Surveyform.UserPswd.select();		
		return;
	}

	//-- If all password correct, send to form.
	if (UserPswd == AdoptHwy_Pswd){
		document.Surveyform.action = "Permit.asp";
		document.Surveyform.submit();
	return;
	}	
	
//-- If all password correct, send to form.
		alert('The login is incorrect.  Please check your entry and try again.');
		document.Surveyform.UserPswd.value = " ";
		document.Surveyform.UserPswd.select();
		document.Surveyform.action="LogOn.asp";
		return;
	
}
//---  This will prevent user from getting to the Activity Report by hitting enter.
function Submit_Check(){
		var	UserPswd = document.Surveyform.UserPswd.value;
		if (UserPswd == ""){
				document.Surveyform.action="LogOn.asp";
			}
			else{
				Sav_Click();
			}
		
}