I can run the following javascript code succefully in IE browser:
<script language="JavaScript" type="text/JavaScript">
document.formname.submit();
</script>
this javascript automatically submit the form when running the page.
However I have problem in Firefox browser, it's stuck at this code (cannot submit form).
Any idea what I need to modify so it works both on IE and Firefox? thanks.