// MCH: From http://www.mix-fx.com/flash-prompt.htm, it's to fix the solve the "Click to activate and use this control" prompt box issue in IE
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}
