<!--
function EmpManualLogin_Validator(theForm)
{
  //Password:
    if (theForm.password.value.toUpperCase() != "AFFTON1969")
    {
      alert("Error! - Please re-enter password.");
      theForm.password.focus();
      return (false);
    }
  //Script end
  
  
    return (true);
}

//-->

