<!--
function Validator(theForm)
{
 if (theForm.name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.name.focus();
    return (false);
  }
  if (theForm.company.value == "")
  {
    alert("Please enter a value for the \"Company\" field.");
    theForm.company.focus();
    return (false);
  }
   if (theForm.address.value == "")
  {
    alert("Please enter a value for the \"Mailing Address\" field.");
    theForm.address.focus();
    return (false);
  }
   if (theForm.city.value == "")
  {
    alert("Please enter a value for the \"City\" field.");
    theForm.city.focus();
    return (false);
  }
  if (theForm.state.value == "")
  {
    alert("Please enter a value for the \"State\" field.");
    theForm.state.focus();
    return (false);
  }
 // if (theForm.Selectstate.selectedIndex < 0)
 // {
   // alert("Please select one of the \"State\" options.");
   // theForm.Selectstate.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.phone.value.length < 7)
  {
    alert("Please enter a value for the \"Phone\" field. Format: (area) 123-4567");
    theForm.phone.focus();
    return (false);
  }
  // if (theForm.SelectZip.value == "")
  //{
   // alert("Please enter a value for the \"Zip/Postal Code\" field.");
   // theForm.SelectZip.focus();
   // return (false);
 // }
   if (theForm.email.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.email.focus();
    return (false);
  }  
  return (true);
}
//-->
