lo,

this may be worth a try.

put this bit in between the <head></head> tags:

Code:
<script language="Javascript">
<!--
function SetFocus(formfield){

var theForm = document.forms['FORMNAME']
theForm[formfield].focus();

}
//-->
</script>
Then in the <body> tag add:

onload="SetFocus('FIELDNAME')"

just replace the FORMNAME and FIELDNAME with the correct names of the form and field you wish to use.

Hope that helps, well hope it works tbh