function frmFeedBack_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 < 1)
  {
    alert("Please enter at least 1 characters in the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Postal.value.length > 6)
  {
    alert("Please enter at most 6 characters in the \"Postal Code\" field.");
    theForm.Postal.focus();
    return (false);
  }

  var checkOK = "0123456789-";
  var checkStr = theForm.Postal.value;
  var allValid = true;
  var validGroups = 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 digit characters in the \"Postal Code\" field.");
    theForm.Postal.focus();
    return (false);
  }

  if (theForm.Tel.value.length > 7)
  {
    alert("Please enter at most 7 characters in the \"Telephone\" field.");
    theForm.Tel.focus();
    return (false);
  }

  var checkOK = "0123456789-";
  var checkStr = theForm.Tel.value;
  var allValid = true;
  var validGroups = 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 digit characters in the \"Telephone\" field.");
    theForm.Tel.focus();
    return (false);
  }

  if (theForm.Fax.value.length > 7)
  {
    alert("Please enter at most 7 characters in the \"Telephone\" field.");
    theForm.Fax.focus();
    return (false);
  }

  var checkOK = "0123456789-";
  var checkStr = theForm.Fax.value;
  var allValid = true;
  var validGroups = 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 digit characters in the \"Telephone\" field.");
    theForm.Fax.focus();
    return (false);
  }

  if (theForm.Mobile.value.length > 8)
  {
    alert("Please enter at most 8 characters in the \"Mobile\" field.");
    theForm.Mobile.focus();
    return (false);
  }

  var checkOK = "0123456789-";
  var checkStr = theForm.Mobile.value;
  var allValid = true;
  var validGroups = 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 digit characters in the \"Mobile\" field.");
    theForm.Mobile.focus();
    return (false);
  }

  if (theForm.Category.selectedIndex < 0)
  {
    alert("Please select one of the \"Category\" options.");
    theForm.Category.focus();
    return (false);
  }

  if (theForm.Category.selectedIndex == 0)
  {
    alert("The first \"Category\" option is not a valid selection.  Please choose one of the other options.");
    theForm.Category.focus();
    return (false);
  }

  if (theForm.Comments.value == "")
  {
    alert("Please enter a value for the \"Comments\" field.");
    theForm.Comments.focus();
    return (false);
  }

  if (theForm.Comments.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Comments\" field.");
    theForm.Comments.focus();
    return (false);
  }
  return (true);
}