function ProcessHrefs()
{
  var x = document.getElementsByTagName("a");
  for (var i=0;i<x.length;i++)
  {
    x[i].setAttribute("onfocus","this.blur()");
  }
}

var ProcessHrefsOnload =(window.onload)? window.onload : function(){};
window.onload = function(){ProcessHrefsOnload(); ProcessHrefs();}

