// JavaScript Document
window.onload = focusForm;
function focusForm(){
   if(document.getElementById("word")){
      document.getElementById("word").focus();
   } 
}