﻿/* for form post to aweber, infusion */
function doExternalPost(targetUrl, theForm) {
    theForm.__VIEWSTATE.value = "";
    theForm.encoding = "application/x-www-form-urlencoded";
    theForm.action = targetUrl;
    theForm.target = '_new';
    theForm.submit();
}
/*end external post function*/