In any case, here's another (hopefully) useful tip; how to get the curser to be in a form field on a page load. I find it especially useful for admin type pages that require a log in. You can have everything ready to go for the user to just start typing.
In this example, your form would look like this:
<BODY onLoad="document.forms.MyForm.UserName.focus()">
<form method="post" name="MyForm" action="YourActionPage.asp">This is a simple log in form with two fields: UserName and Password. In this example, when the page loads, the cursor will be placed in the UserName field.
<input type="text" name="UserName" size="15">
<input type="text" name="Password" size="15">
<input type="submit" value="Search">
</form>
Remember! JavaScript is case sensitive!