function Validate(theForm)
{

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

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

  var checkOK = "0123456789-,";
  var checkStr = theForm.Zip.value;
  var allValid = 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 += ch;
  }
  if (!allValid)
  {
    alert("Please enter only digit characters in the \"Zip\" field.");
    theForm.Zip.focus();
    return (false);
  }

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

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

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

