<!--
function FrontPage_Form2_Validator(theForm)
{

  if (theForm.Name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Name.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Name.value.length > 75)
  {
    alert("Please enter at most 75 characters in the \"Name\" field.");
    theForm.Name.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 > 25)
  {
    alert("Please enter at most 25 characters in the \"Phone\" field.");
    theForm.Phone.focus();
    return (false);
  }

  if (theForm.Company.value == "")
  {
    alert("Please enter a value for the \"Company Name\" field.");
    theForm.Company.focus();
    return (false);
  }

  if (theForm.Company.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"Company Name\" field.");
    theForm.Company.focus();
    return (false);
  }

  if (theForm.Company.value.length > 50)
  {
    alert("Please enter at most 50 characters in the \"Company Name\" field.");
    theForm.Company.focus();
    return (false);
  }




  return (true);
}
//-->


