<!--
function Form1_Validator(theForm)
{

  if (theForm.firstname.value == "first name")
  {
    alert("Please enter your first name.");
    theForm.firstname.focus();
    return (false);
  }

    if (theForm.firstname.value == "")
  {
    alert("Please enter your first name.");
    theForm.firstname.focus();
    return (false);
  }

  if (theForm.lastname.value == "last name")
  {
    alert("Please enter your last name.");
    theForm.lastname.focus();
    return (false);
  }

    if (theForm.lastname.value == "")
  {
    alert("Please enter your last name.");
    theForm.lastname.focus();
    return (false);
  }


    if (theForm.city.value == "city")
    {
      alert("Please enter your city");
      theForm.city.focus();
      return (false);
  }

    if (theForm.zip.value == "zip")
    {
      alert("Please enter your zip or postal code");
      theForm.zip.focus();
      return (false);
  }

      if (theForm.leadsource.value == "")
    {
      alert("Please let us know how you found us");
      theForm.leadsource.focus();
      return (false);
  }




}
//-->
