The part about the "Boo just thinks your <img border="0" title="" alt="[Roll Eyes]" src="images/icons/rolleyes.gif" /> !" is my signature...it's a quote from an addictive video game. It's NOT directed at you or anyone...

You'll need to tweak it for your form but essentially something like this:
# Within the html <head> tag something like this:
<script language=javascript>
function getFocus() {
document.login.user.focus();
// <-- this is a JavaScript Comment notation
// Break down of the actual focusing
// .focus() is brought to
// document = the page you are on
// where .login = form's name value
// where .user = input's name value
// document.login.user.focus() = points to where you want the entry point
}
</script>

# Then in the body tag
<BODY onLoad="getFocus[)">

# The form should look something like this
<form action="..." name=login>
<input type=text name=user ...>

So what you should do is replace the values in the function getFocus() with the value of <form name=???> and the value of <input name=???> where you want the cursor to start from the login page. Good luck...

Boo thinks your just <img border="0" title="" alt="[Roll Eyes]" src="images/icons/rolleyes.gif" /> !
<A HREF="http://www.mvsource.com/cgi-bin/bg2soa/wwwthreads.pl" target="_new">http://www.mvsource.com/cgi-bin/bg2soa/wwwthreads.pl</A>