I have created a dynamic form with a "regular" button that submits the completed form via email using the following click event script:var oDoc = event.target;oDoc.mailDoc({bUI: true,cTo: emailaddress,cCc: emailaddress,cSubject: "here",cMsg: "here"});From here, I need to Hide/Lock the 'submit' "regu...