sorry to post 2 times forgot to drop the in there to show the html
here is the exact way i have done it...
you fill out the form how ever you need to make it.. the name of the form is name="nameOFform"
Code:
<form name="nameOFform" method="POST" action="https://testform.com/cgi-bin/form.cgi">
<input type="hidden" name="hellopage" value="">
<input type="hidden" name="reqtype" value="secure">
</form>
here is the example of a text link using the form to link to it
Code:
<a href="javascript:document.nameOFform.submit()">this is a test</a>
make sure nameOFform is the same as the one above this should work perfect
-los