Forum Moderators: open
because I dont know how looks your code I guess you used some submit-button in the form. Change the type of the button to 'button' so it will look like this:
<form name='myForm' action='mailto:adress@server.com' method='post'>
-------Your elements--------
<input type='button' value='Submit(or whatever)' onClick='javascript: myFunction();'>
</form>
and somewhere upper (somewhere inside the HEAD tag would be OK)put this code
<script language="JavaScript" type="text/javascript">
<!--
function myFunction(){
document.myForm.submit();
window.location="http://www.somepageyouknowwhat.com";
}
//-->
</script>