<!--
function validateMe(theForm)
{

  if (theForm.Comments.value == "")
  {
    alert("Please enter your comments and questions.");
    theForm.Comments.focus();
    return (false);
  }

  if (theForm.Email.value == "")
  {
    alert("Please enter your e-mail address.");
    theForm.Email.focus();
    return (false);
  }

  if (theForm.Email.value)
  {
      var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_@.";
  var checkStr = theForm.Email.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("The e-mail address can only contain letters, numbers and\r                 (@)   the \"at\" symbol\r                 ( - )   a hyphen\r                 ( . )   a dot");
    theForm.Email.focus();
    return (false);
  }

  if ((theForm.Email.value.indexOf("@") == -1) || (theForm.Email.value.indexOf(".") == -1)) 
  {
        alert("Please format your e-mail address using the standard convention of\r                        \"username\@domain.ext\"");
    theForm.Email.focus();
        return (false);
  }  


  }

return (true);
 }
//-->