if (!window.XMLHttpRequest)
 window.XMLHttpRequest = function() {
  return new ActiveXObject('Microsoft.XMLHTTP');
 }

window.onload = function() {
 ass = document.getElementsByTagName('a');
 for (i=0; i<ass.length; i++)
  ass[i].onfocus = function() {
   this.blur();
  }

}