<!--
function FrontPage_Form1_Validator(theForm)
{
 if (theForm.address1.value == "")
   {
   alert("Please enter a value for first address line.");
   theForm.address1.focus();
   return (false);
   }

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

 if (theForm.state.value == "")
   {
   alert("Please enter a value for state.");
   theForm.state.focus();
   return (false);
   }
 
 if (theForm.zip.value == "")
   {
   alert("Please enter a value for ZIP code.");
   theForm.zip.focus();
   return (false);
   }
   
  if (theForm.area.value == "")
    {
    alert("Please enter a value for area code.");
    theForm.area.focus();
    return (false);
   }
   
  if (theForm.phone.value == "")
    {
    alert("Please enter a value for phone.");
    theForm.phone.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 < 6)
  {
    alert("Please enter at least 6 characters in the email field.");
    theForm.email.focus();
    return (false);
  }
 
 if (theForm.email.value.indexOf('@', 0) == -1)
  {
    alert("Your email address does not appear to be valid. Valid email addresses must contain the @ character.");
    theForm.email.focus();
    return (false);
  }

 if (theForm.email.value.indexOf('.', 0) == -1)
  {
    alert("Your email address does not appear to be valid.  Valid email addresses must contain a TLD like .com, .net, or .org.");
    theForm.email.focus();
    return (false);
  }

  
  return (true);
}
//-->



