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

