function Form_Validate(theForm, command)
{

    if (command == "electronic") {
    	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 (!validMemberNumber(theForm)) {
	  	    return (false);
	    }
    }
    
    if (!validEmailAddress(theForm.email)) {
  	    return (false);
    }  

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

