Using this jQuery, the cursor can be placed wight into the form element that you would like the user to fill out.
(tabindex defines the order in which these elements should be selected based on clicking the Tab key)
Example 1:
<input type="text" name="user" size="24" tabindex="0"/>
$('input[tabindex="0"]).focus( );