<!--
function FrontPage_Form1_Validator(theForm)
{


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


  if (theForm.company.value == "")
  {
    alert("Please enter your Company.");
    theForm.company.focus();
    return (false);
  }

  if (theForm.phone.value == "")
  {
    alert("Please enter a COMPLETE phone number, including Area Code.");
    theForm.phone.focus();
    return (false);
  }


  if (theForm.email.value == "")
  {
    alert("Please enter a value for your Email.");
    theForm.email.focus();
    return (false);
  }





  return (true);
}


//-->
