window.onload = function(){
   set_focus("input1");
}
function to_pg(inp_page){
   window.location.replace(inp_page);
   return false;
}
function set_focus(id){
   try{
   document.getElementById(id).focus();
   }
   catch(err){}
   return true;
}
