tag_a=document.getElementsByTagName("a");
 for(var k=0;k<tag_a.length;k++)
   {
	   tag_a[k].onfocus=function(){this.blur()};
	   }
	   
tag_input=document.getElementsByTagName("input");
 for(var k=0;k<tag_input.length;k++)
   {
     if(tag_input[k].type!="text")
	 {
	   tag_input[k].onfocus=function(){this.blur()};
	   }
	 if((tag_input[k].type=="button") || (tag_input[k].type=="submit") || (tag_input[k].type=="reset"))
	 {
	   tag_input[k].style.cursor="pointer";
	   }
	}
	
tag_button=document.getElementsByTagName("button");
 for(var k=0;k<tag_button.length;k++)
   {
	   tag_button[k].onfocus=function(){this.blur()};
	   tag_button[k].style.cursor="pointer";
	   }


    window.onerror = function(){ return true; } 


