reloading is not necessary I think, cause there's an eventhandler
onSubmit="..." which is normally used to check form fields whether
they are valid, hence it's often used
(if you can speak or at least read german, visit
http://selfhtml.teamone.de for an excellent tut on html, js etc)
an example from SelfHTML:
<html><head><title>Test</title>
<script type="text/javascript">
<!--
function CheckInput() {
for(i=0; i<document.forms[0].elements.length; ++i)
if(document.forms[0].elements[i].value == "") {
alert("Not all fields have been filled!");
document.forms[0].elements[i].focus();
return false;
}
return true;
}
//-->
</script>
</head><body>
<form action="onsubmit.htm" onSubmit="return CheckInput();">
Feld 1: <input size="30"><br>
Feld 2: <input size="30"><br>
Feld 3: <input size="30"><br>
<input type="submit">
</form>
</body></html>