function FrontPage_Form1_Validator(theForm)
}
  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-.# ";
  var checkStr = theForm.Company_Name.value;
  var allValid = true;
  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 (!allValid)
  {
    alert("Please enter only letter, number, whitespace and \"- # .\" characters in the \"Company\" field.");
    theForm.Company_Name.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz- ";
  var checkStr = theForm.Customer_Name.value;
  var allValid = true;
  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 (!allValid)
  {
    alert("Please enter only letter, whitespace and \"-\" characters in the \"Name\" field.");
    theForm.Customer_Name.focus();
    return (false);
  }

  if (theForm.Customer_Name.value == "")
  { 
  	alert ("Please enter your name.");
	theForm.Customer_Name.focus();
	return (false);
  }
  
  
  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-.# ";
  var checkStr = theForm.Address.value;
  var allValid = true;
  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 (!allValid)
  {
    alert("Please enter only letter, number, whitespace and \"- # .\" characters in the \"Address\" field.");
    theForm.Address.focus();
    return (false);
  }
  if (theForm.Address.value == "")
  { 
  	alert ("Please enter your address.");
	theForm.Address.focus();
	return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz- ";
  var checkStr = theForm.City.value;
  var allValid = true;
  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 (!allValid)
  {
    alert("Please enter only letter, whitespace and \"-\" characters in the \"City\" field.");
    theForm.City.focus();
    return (false);
  }
  if (theForm.City.value == "")
  { 
  	alert ("Please enter your city.");
	theForm.City.focus();
	return (false);
  }

    
  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-.";
  var checkStr = theForm.Zip.value;
  var allValid = true;
  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 (!allValid)
  {
    alert("Please enter only letter, number, whitespace and \"- .\" characters in the \"Zip\" field.");
    theForm.Zip.focus();
    return (false);
  }
    if (theForm.Zip.value == "")
  { 
  	alert ("Please enter your Zip.");
	theForm.Zip.focus();
	return (false);
  }

    if (theForm.E_Mail.value == "")
  { 
  	alert ("Please enter your e-mail address.");
	theForm.E_Mail.focus();
	return (false);
  }

  
  return (true);
}