function lvalidate() {
  var theMessage = "Invalid eMail/Login - Please complete the following: \n-----------------------------------\n";
  var noErrors = true;
  // make sure the email field is not blank
  if (document.getElementById("logger").username.value=="") {
      theMessage = theMessage + "\n --> user name";
      noErrors = false;
  }
  // make sure the password field is not blank
  if (document.getElementById("logger").lpword.value=="") {
      theMessage = theMessage + "\n --> Password";
      noErrors = false;
  }
// If no errors, submit the form
  if (noErrors) {
      return true;
  } else {
    // errors were found, show alert message
    alert(theMessage);
    return false;
 }
}
