<!--
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 < 2)
  {
    alert("Please enter at least 2 characters in the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Title.value == "")
  {
    alert("Please enter a value for the \"Title\" field.");
    theForm.Title.focus();
    return (false);
  }

  if (theForm.Title.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"Title\" field.");
    theForm.Title.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 < 2)
  {
    alert("Please enter at least 2 characters in the \"Organization\" field.");
    theForm.Organization.focus();
    return (false);
  }

  if (theForm.Address1.value == "")
  {
    alert("Please enter a value for the \"Address\" field.");
    theForm.Address1.focus();
    return (false);
  }

  if (theForm.Address1.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"Address\" field.");
    theForm.Address1.focus();
    return (false);
  }

  if (theForm.City.value == "")
  {
    alert("Please enter a value for the \"City\" field.");
    theForm.City.focus();
    return (false);
  }

  if (theForm.City.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"City\" field.");
    theForm.City.focus();
    return (false);
  }

  if (theForm.State.value == "")
  {
    alert("Please enter a value for the \"State_Province\" field.");
    theForm.State.focus();
    return (false);
  }

  if (theForm.State.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"State_Province\" field.");
    theForm.State.focus();
    return (false);
  }

  if (theForm.Zip.value == "")
  {
    alert("Please enter a value for the \"ZipCode\" field.");
    theForm.Zip.focus();
    return (false);
  }

  if (theForm.Zip.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"ZipCode\" field.");
    theForm.Zip.focus();
    return (false);
  }

  if (theForm.WorkPhone.value == "")
  {
    alert("Please enter a value for the \"WorkPhone\" field.");
    theForm.WorkPhone.focus();
    return (false);
  }

  if (theForm.WorkPhone.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"WorkPhone\" field.");
    theForm.WorkPhone.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 < 2)
  {
    alert("Please enter at least 2 characters in the \"Email\" field.");
    theForm.Email.focus();
    return (false);
  }
  return (true);
}
// -->
