
 Originally Posted by 
Dr Unne
					
				 
				1. Some Javascript is probably moving the keyboard focus to a certain text box on the page, and if you click a text box really fast before it gets a chance, it will possibly move the focus somewhere unexpected.  Gmail does this for example.  Wait for the page to load entirely in your browser before you start typing.
			
		 
	 
 Confirmed.
	Code:
	function setFocus() {	
  if (document.login_form.login.value == '') {
    document.login_form.login.focus(); 
  }
}
 That's the exact code Yahoo.com uses.