Defina o foco JavaScript
document.getElementById("ThingToSetFocusOn").focus();
Pleasant Pigeon
document.getElementById("ThingToSetFocusOn").focus();
window.onload=function(){
document.getElementById("id_here").focus();
}
// id_here = put the id of the HTML element where you want to set focus.