I have a form with a couple of text fields that get emailed to me when the user clicks Submit. What I am trying to do is show an alert message box saying Thank you your request has been submitted. Or Redirect to a Thank you page. I just can't seem to get Both the Submit button and the redirect to work together. Below is my code with out the redirect or alert..

<HTML>
<Tile><h1> Action Request Form </h1></Tilte>
<HEAD>


</Head><BODY bgColor=White>
<HR>
<FORM METHOD="post" ACTION= "mailto:[email protected]?subject=Action Request" ENCTYPE="text/plain">

<h1> Name:</h1>
<INPUT NAME="name" SIZE="30" >
<h1> Description:</h1><TEXTAREA name=Description rows=6 cols=40></TEXTAREA>
<h1>How Soon is This Needed? </h1>
<INPUT TYPE="radio" NAME=Time VALUE="Urgent">
Urgent
<br>
<INPUT TYPE="radio" NAME=Time VALUE="ASAP">
ASAP
<br>
<INPUT TYPE="radio" NAME=Time VALUE="Tomorrow">
Tomorrow
<br>
<INPUT TYPE="radio" NAME=Time VALUE="Couple of Days">
Couple of Days
<br>
<INPUT TYPE="radio" NAME=Time VALUE="When Ever">
When Ever
<P>
<br><BR>

<INPUT TYPE="submit" id=submit1 value="Submit" name=submit1 >


<INPUT TYPE="reset" value=Reset>
</FORM></P></BODY></HTML>