function forgotsignin_Validator(theForm)
{

  if (theForm.email.value == "")
  {
    alert("Please enter your Email Address.");
    theForm.email.focus();
    return (false);
  }

  if ((theForm.email.value.indexOf('@',0) == -1) || (theForm.email.value.indexOf('.',0) == -1))
  {
    alert("Email Address is incorrectly formatted. Please enter again.");
    theForm.email.focus();
    return (false);
  }

  return (true);
}

function accountlookup_Validator(theForm)
{

  if (theForm.patrondid.value == "")
  {
    alert("Please enter your Customer Number.");
    theForm.patrondid.focus();
    return (false);
  }

  if (theForm.phonenumber.value == "")
  {
    alert("Please enter your Phone Number.");
    theForm.phonenumber.focus();
    return (false);
  }

  if (theForm.postalcode.value == "")
  {
    alert("Please enter your Postal Code.");
    theForm.postalcode.focus();
    return (false);
  }

  return (true);
}

