<!--webbot BOT="GeneratedScript" PREVIEW=" " startspan --><script Language="JavaScript" Type="text/javascript"><!--
function Form1_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 < 4)
  {
    alert("Please enter at least 4 characters in the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Organization.value == "")
  {
    alert("Please enter a value for the \"Organization\" field.");
    theForm.Organization.focus();
    return (false);
  }

  if (theForm.Organization.value.length < 4)
  {
    alert("Please enter at least 4 characters in the \"Organization\" field.");
    theForm.Organization.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 < 4)
  {
    alert("Please enter at least 4 characters in the \"Email\" field.");
    theForm.Email.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 < 7)
  {
    alert("Please enter at least 7 characters in the \"Phone\" field.");
    theForm.Phone.focus();
    return (false);
  }
  return (true);
}
//--></script><!--webbot BOT="GeneratedScript" endspan -->