Using a text only editor like NotePad, find these lines in the script:
Code:
if (document.attachEvent && parent.length>0) //account for page being in IFRAME, in which above doesn't fire in IE
this.addEvent([window], function(){functionref()}, "load");
Make it like so (additions red, line may wrap):
Code:
if (!window.addEventListener && document.attachEvent && parent.length>0) //account for page being in IFRAME, in which above doesn't fire in IE 8 and less
this.addEvent([window], function(){functionref()}, "load");
Save and use that version.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks