Hello friends!!
I have share the javascript and HTML for the form fields you will need to edit:
<body>
<SCRIPT language=�JavaScript�>
function OnSubmitForm()
{
if(document.pressed == �Email�)
{
var email = prompt(�Please enter the email the form will be submitted to:�);
var toemail = �mailto:�� + email + ���;
document.emailform.action = (toemail);
}
}
</SCRIPT>
<form name=�emailform� onSubmit=�return OnSubmitForm();� method=�post� enctype=�text/plain�>
<Misc Text Fields>
<input type=�submit� onClick=�document.pressed=this.value� VALUE=�Email� />
</body>