It bugs me as other professional sites don’t have it. I inserted onclick=”this.blur()” Before the object, inside the object, and inside the DIV, and even all at the same time and it doesnt fix it. border=”0″ doesn’t either. Using this java anywhere on th epage, literally, doesnt work either:
function removeFocusOnAllLinks(){
for(var i=0 ; i < document.links.length ; i++)
document.links.onfocus=blurLink;
}
function blurLink() {
if (this.blur) this.blur();
}
window.onload=removeFocusOnAllLinks;
Possibly you are assuming I am adding additional code or something of that nature.