Javascript
: Focus on a form-field
This script makes the cursor start in a form-field when the page is loaded. Therefor it's handy to put this script behind the closed FORM TAG. You can also create a function and use it in the BODY OnLoad.
Replace 'formname' for the NAME of the FORM. And replace inputfieldname for the NAME of the INPUT-TAG.
Code:
document.formname.inputfieldname.focus();