Avatar

Level 3

After picking at it for a while the solutions that accomplished my goals were as follows:

Click Event:

button.presense = "invisible";  \\ hides the button

field1.access = "readOnly";

field2.access = "readOnly"; \\ repeat for all fields

var oDoc = event.target;

oDoc.mailDoc({

bUI: true,

cTo: emailaddress,

cCc: emailaddress,

cSubject: "here",

cMsg: "here"

}); \\ script for emailing the form

Thanks for the input.