
function preProcessSaveMailinglistSubscriber(theFormId) {
  theForm = document.getElementById(theFormId);
  var formFields = new Array();
  
  for(i=0; i<theForm.elements.length; i++){
  	 if (theForm.elements[i].type == "checkbox") {
         formFields[theForm.elements[i].name] = theForm.elements[i].checked;
  	 } else {
         formFields[theForm.elements[i].name] = theForm.elements[i].value;
     }
  }
  
  return formFields;
}

function followUpSaveMailinglistSubscriber() {


}

