// Script Copyright 2003, William M. Reynolds, All Rights Reserved.
function ExplorerFix(){
	    for (a in document.links) document.links[a].onfocus = document.links[a].blur;
  	}
	var navVer = navigator.appVersion
	var navVer5 = navVer.indexOf("MSIE 5")
	if (document.all && navVer5 > -1 ){
	    document.onmousedown = ExplorerFix;
	}