function clearLinkDot() {
	var i, a, main;
	for(i=0; (a = document.getElementsByTagName("a")[i]); i++) {
		if(a.getAttribute("onFocus")==null) {
			a.setAttribute("onFocus","this.blur();");
		}else{
			a.setAttribute("onFocus",a.getAttribute("onFocus")+";this.blur();");
		}
		a.setAttribute("hideFocus","hidefocus");
	}
}

if (window.addEventListener) { // DOM method for binding an event
      window.addEventListener("load", clearLinkDot, false);
} else if (window.attachEvent) {// IE exclusive method for binding an event
      window.attachEvent("onload", clearLinkDot);
} else if (document.getElementById) { // support older modern browsers
      window.onload=clearLinkDot;
}
