When specifying the properties of a form what is the difference between:
(onSubmit bit....)Code:
<FORM action="rar.asp" onSubmit="function()">
<INPUT type="hidden" value="foo">
</FORM>
and
<FORM action="rar.asp" onSubmit="return function()">
<INPUT type="hidden" value="foo">
</FORM>
Cheers!
