function focusForm(){
   if(document.getElementById("username")){
      document.getElementById("username").focus();
   } 
}

YAHOO.util.Event.addListener(window, "load", focusForm);

