<!--
function Form1_Validator(theForm)
{

  if (theForm.f_name.value == "")
  {
    alert("Please enter a value for the \"First Name\" field.");
    theForm.f_name.focus();
    return (false);
  }

  if (theForm.l_name.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"Last Name\" field.");
    theForm.l_name.focus();
    return (false);
  }

  if (theForm.street.value == "")
  {
    alert("Please enter a value for the \"Street\" field.");
    theForm.street.focus();
    return (false);
  }

  if (theForm.street.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"Street\" field.");
    theForm.street.focus();
    return (false);
  }

  if (theForm.city.value == "")
  {
    alert("Please enter a value for the \"City\" field.");
    theForm.city.focus();
    return (false);
  }

  if (theForm.city.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"City\" field.");
    theForm.city.focus();
    return (false);
  }

  if (theForm.state.selectedIndex == 0)
  {
    alert("The first \"State\" option is not a valid selection.  Please choose one of the other options.");
    theForm.state.focus();
    return (false);
  }

  if (theForm.zip.value == "")
  {
    alert("Please enter a value for the \"Zip\" field.");
    theForm.zip.focus();
    return (false);
  }

  if (theForm.zip.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"Zip\" field.");
    theForm.zip.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"Email\" field.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.phone.value == "")
  {
    alert("Please enter a value for the \"Phone\" field.");
    theForm.phone.focus();
    return (false);
  }

  if (theForm.phone.value.length < 7)
  {
    alert("Please enter at least 7 characters in the \"Phone\" field.");
    theForm.phone.focus();
    return (false);
  }
  return (true);
}
//-->