Try this:
<SCRIPT LANGUAGE="javascript">
function send()
{document.theform.submit()}
</SCRIPT>
<FORM NAME="theform" method="post" action="process.php">
Name: <input type="text" name="name"><br><br>
<a name="submit" onClick="send()">Submit</a>
</FORM>
Cgraz