<!--
function validateMe(theForm)
{

  if (theForm.First_Name.value == "")
  {
    alert("Please provide your first name.");
    theForm.First_Name.focus();
    return (false);
  }

  if (theForm.Last_Name.value == "")
  {
    alert("Please provide your last name.");
    theForm.Last_Name.focus();
    return (false);
  }

  if (theForm.Membership.value == "")
  {
    alert("Please select a membership level.");
    theForm.Membership.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\n                 (@)   the \"at\" symbol\r                 ( - )   a hyphen\n                 ( . )   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\n                        \"username\@domain.ext\"");
    theForm.email.focus();
        return (false);
  }  


  }

return (true);
 }
//-->