<!--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.Designation.value == "")
  {
    alert("Please enter a value for the \"Designation\" field.");
    theForm.Designation.focus();
    return (false);
  }

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

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

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

  var checkOK = "0123456789-.,";
  var checkStr = theForm.Phone.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 \"Phone\" field.");
    theForm.Phone.focus();
    return (false);
  }

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

  
   return (true);
}
//-->