function Form_Validate(theForm, command)
{

    if (theForm.name.value == "") {
      alert("You must enter in your name exactly as it appears on your mailing label");
      theForm.name.focus();
      return (false);
    }
  
    if (!validPersonsName(theForm.name, 5, 60, true)) {
    	return (false);
    }
   
    if (!validEmailAddress(theForm.email)) {
  	    return (false);
    }  

    if (!validMemberNumber(theForm)) {
        theForm.number.focus();
  	    return (false);
    }
  
    if (!validSecurityCode(theForm)) {
        theForm.antispam.focus();
        return (false);
    }
  
    theForm.operation.value = command;
    theForm.submit();	
}
