function IsValidUsernameForm(theform) { if(!firstName(theform))return; if(!lastName(theform))return; if(!address(theform))return; if(!city(theform))return; if(!preferredComm(theform))return; if(!valEmail(theform))return; theform.submit(); } 
function IsValidPasswordForm(theform) { if(!conselor(theform))return; if(!firstName(theform))return; if(!lastName(theform))return; if(!address(theform))return; if(!city(theform))return; if(!valEmail(theform))return; theform.submit(); }
