<!--
function validateMe(theForm)
{

  if (theForm.Donor_Information.value == "")
  {
    alert("Please provide the donor information.");
    theForm.Donor_Information.focus();
    return (false);
  }

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

  if (theForm.Contact_Person.value == "")
  {
    alert("Please provide a contact person.");
    theForm.Contact_Person.focus();
    return (false);
  }

  if (theForm.Company_President_CEO.value == "")
  {
    alert("Please provide the name of the President or CEO or your organization.");
    theForm.Company_President_CEO.focus();
    return (false);
  }

    if (theForm.Address.value == "")
  {
    alert("Please provide an address.");
    theForm.Address.focus();
    return (false);
  }

    if (theForm.City.value == "")
  {
    alert("Please provide a city.");
    theForm.City.focus();
    return (false);
  }

    if (theForm.State.value == "")
  {
    alert("Please provide a state.");
    theForm.State.focus();
    return (false);
  }

    if (theForm.Zip.value == "")
  {
    alert("Please provide a zip code.");
    theForm.Zip.focus();
    return (false);
  }

    if (theForm.Phone.value == "")
  {
    alert("Please provide a telephone number.");
    theForm.Phone.focus();
    return (false);
  }

    if (theForm.Name_on_Donor_Recognition_Lists.value == "")
  {
    alert("Please provide the name preferred to be printed on Donor Recognition Lists.");
    theForm.Name_on_Donor_Recognition_Lists.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);
 }
//-->



