In case you're a JS newbie of sorts, try this:
Code:
<html>
<head>
<title>A Page</title>
<script language="JavaScript">
<!--
function changeFocus() {
document.form1.email.focus()
}
//-->
</script>
</head>
<body onLoad="changeFocus();">
<form name="form1" action="somepage.cgi" method="post">
Email Address: <input type="text" name="email"><br>
<input type="submit" name="submit" value="Send Email">
</form>
</body>
</html>
Also, if you wanted to, you could replace "document.form1.email.focus()" with "document.forms[0].email.focus(), I believe. That will automatically locate the first form on the page, regardless of its name.
I don't know for sure whether you'll still required to specify the NAME attribute in your FORM tag, but it can't hurt either way. 
Bookmarks