// fixes the dotted outline on flash objects 
// in IE Browsers
function fix_js_objects() {
        var theObjects = document.getElementsByTagName("object");
        for (var i = 0; i < theObjects.length; i++) {
                theObjects[i].outerHTML = theObjects[i].outerHTML;
        }
}

if(window.attachEvent) {  // IE
	window.attachEvent('onload', fix_js_objects);
}