   <!--webbot BOT="GeneratedScript" PREVIEW=" " startspan -->
   
    
   <!--
function FrontPage_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.Address1.value == "")
  {
    alert("Please enter a value for the \"Address\" field.");
    theForm.Address1.focus();
    return (false);
  }

  if (theForm.Address1.value.length < 5)
  {
    alert("Please enter at least 5 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 < 3)
  {
    alert("Please enter at least 3 characters in the \"City\" field.");
    theForm.City.focus();
    return (false);
  }

  if (theForm.State.selectedIndex < 0)
  {
    alert("Please select one of the \"State\" options.");
    theForm.State.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.Zip.value == "")
  {
    alert("Please enter a value for the \"Zip Code\" field.");
    theForm.Zip.focus();
    return (false);
  }

  if (theForm.Zip.value.length < 5)
  {
    alert("Please enter at least 5 characters in the \"Zip Code\" field.");
    theForm.Zip.focus();
    return (false);
  }

  if (theForm.Zip.value.length > 5)
  {
    alert("Please enter at most 5 characters in the \"Zip Code\" field.");
    theForm.Zip.focus();
    return (false);
  }

  var checkOK = "0123456789-.,";
  var checkStr = theForm.Zip.value;
  var allValid = true;
  var validGroups = true;
  var decPoints = 0;
  var allNum = "";
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
    if (ch == ".")
    {
      allNum += ".";
      decPoints++;
    }
    else if (ch == "," && decPoints != 0)
    {
      validGroups = false;
      break;
    }
    else if (ch != ",")
      allNum += ch;
  }
  if (!allValid)
  {
    alert("Please enter only digit characters in the \"Zip Code\" field.");
    theForm.Zip.focus();
    return (false);
  }

  if (decPoints > 1 || !validGroups)
  {
    alert("Please enter a valid number in the \"Zip\" field.");
    theForm.Zip.focus();
    return (false);
  }

  if (theForm.EMAIL.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.EMAIL.focus();
    return (false);
  }

  if (theForm.TELEPHONE_Home.value == "")
  {
    alert("Please enter a value for the \"Home Telephone\" field.");
    theForm.TELEPHONE_Home.focus();
    return (false);
  }

  if (theForm.Best_Time_Contact.selectedIndex < 0)
  {
    alert("Please select one of the \"Best time to contact you\" options.");
    theForm.Best_Time_Contact.focus();
    return (false);
  }

  if (theForm.Best_Time_Contact.selectedIndex == 0)
  {
    alert("The first \"Best time to contact you\" option is not a valid selection.  Please choose one of the other options.");
    theForm.Best_Time_Contact.focus();
    return (false);
  }

  if (theForm.Position_desired.selectedIndex < 0)
  {
    alert("Please select one of the \"Position Desired\" options.");
    theForm.Position_desired.focus();
    return (false);
  }

  if (theForm.Position_desired.selectedIndex == 0)
  {
    alert("The first \"Position Desired\" option is not a valid selection.  Please choose one of the other options.");
    theForm.Position_desired.focus();
    return (false);
  }

  if (theForm.Experience.value == "")
  {
    alert("Please enter a value for the \"Experience\" field.");
    theForm.Experience.focus();
    return (false);
  }

  if (theForm.Experience.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Experience\" field.");
    theForm.Experience.focus();
    return (false);
  }

  if (theForm.Experience.value.length > 2)
  {
    alert("Please enter at most 2 characters in the \"Experience\" field.");
    theForm.Experience.focus();
    return (false);
  }

  var checkOK = "0123456789-.,";
  var checkStr = theForm.Experience.value;
  var allValid = true;
  var validGroups = true;
  var decPoints = 0;
  var allNum = "";
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
    if (ch == ".")
    {
      allNum += ".";
      decPoints++;
    }
    else if (ch == "," && decPoints != 0)
    {
      validGroups = false;
      break;
    }
    else if (ch != ",")
      allNum += ch;
  }
  if (!allValid)
  {
    alert("Please enter only digit characters in the \"Experience\" field.");
    theForm.Experience.focus();
    return (false);
  }

  if (decPoints > 1 || !validGroups)
  {
    alert("Please enter a valid number in the \"Experience\" field.");
    theForm.Experience.focus();
    return (false);
  }
  return (true);
}
<!--webbot BOT="GeneratedScript" endspan -->