<!--webbot BOT="GeneratedScript" PREVIEW=" " startspan -->

function validateFormLocal(theForm)
{var testresults	  
var str=theForm.Email.value
var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i

	
if (theForm.Name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }
if (theForm.Address.value == "")
  {
    alert("Please enter a value for the \"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.Zip.value == "")
  {
    alert("Please enter a value for the \"Zip\" field.");
    theForm.Zip.focus();
    return (false);
  }
if (theForm.Location.value == "")
  {
    alert("Please enter a value for the \"Location\" field.");
    theForm.Location.focus();
    return (false);
  }
if (theForm.xDate.value == "")
  {
    alert("Please enter a value for the \"Date\" field.");
    theForm.xDate.focus();
    return (false);
  }
if (theForm.Time.value == "")
  {
    alert("Please enter a value for the \"Time\" field.");
    theForm.Time.focus();
    return (false);
  }
if (theForm.Comments.value == "")
  {
    alert("Please enter a value for the \"Comments\" field.");
    theForm.Comments.focus();
    return (false);}

  return (testresults);
}
//->

