Something like this should work...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- START OF SCRIPT -->
<!-- For more scripts visit
-->
<HTML><HEAD><TITLE>Verify Form</TITLE></HEAD>
<SCRIPT LANGUAGE="javascript">
function doVerify()
{
location.href = "thanks.html"
}
</script>
<!-- END OF SCRIPT -->
<BODY BGCOLOR="FFFFFF">
<font face=arial><font size=2>
This JavaScript will email the input to you and send the user,
after clicking send it to a "Thank You" page or something
of that sort.<p>
<FORM method="POST" action="mailto:somebody@some.net" onSubmit="alert('Mail is being sent')">
<B>Please enter your name: </B><input NAME="username" size="30">
<input type=submit onBlur="doVerify()" value="Send it!">
<input type=reset value="Start over">
</form>
</body>
</html>
[sig][/sig]