<!--
function validateAll(theForm)
{
  if (theForm.inpYourName.value == "")
    {
    alert("Please enter a value for the \"Your Name\" field.");
	theForm.inpYourName.focus();
	return (false);
    } 
  if (theForm.inpYourEmail.value == "")
    {
    alert("Please enter a value for the \"Your Email Address\" field.");
    theForm.inpYourEmail.focus();	
	return (false);
    }   
  var checkOK = "0123456789 ";
  var checkStr = theForm.inpMembers.value;
  var allValid = true;
  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;
    }
    allNum += ch;
  }
  if (!allValid)
  {
    alert("Please enter only numbers in the \"Number of Members\" field.");
    theForm.inpMembers.focus();
    return (false);
  }
  var checkOK = "0123456789 ";
  var checkStr = theForm.inpNonMembers.value;
  var allValid = true;
  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;
    }
    allNum += ch;
  }
  if (!allValid)
  {
    alert("Please enter only numbers in the \"Number of Non-members\" field.");
    theForm.inpNonMembers.focus();
    return (false);
  }	
  return (true);
}		 

//-->
