I'm at wits end. I have a simple cgi email form on one of my sites that works in Safari and Firefox but won't work in IE. The form is supposed to submit the captured info to a designated email and upon submittal, redirect the user to a PDF containing a monthly promo code. Here's the code I'm using:

Setting up form routing:

<form method="post" action="http://www.peakkids.com/cgi-bin/cgiemail/forms/promo.txt">
<input type="hidden" name="cgiemail-mailopt" value="sync" />

...

Code to submit and redirect form to promo code:

<input type="submit" value="Submit Form" />
<input type="reset" value="Reset Form" />

<input type="hidden" name="success" value="http://www.peakkids.com/pdf/dec_promo.pdf" />

Please help.