function FECustom_sendForm()
{
 
  var szOrgAction = theForm.action;
 
  theForm.action = "https://flashecom.infusionsoft.com/AddForms/processFormSecure.jsp";
  theForm.method = "post";
  theForm.submit();
 
  theForm.action = szOrgAction;
  theForm.target = "";
}
