It is not recommended to wash. If everything you are looking for hides the focus lines, use instead:
a[i].onfocus = function () { this.hideFocus = true; };
This will work for all versions of IE. For other browsers (including IE8 in standard mode), you can set the outlineCSS style to hide the focus paths:
a {
outline: none;
}
, , .