/* RSadanand - 08/03/2006 - In the latest IE update; when a web page uses the APPLET, EMBED, or OBJECT elements to load an 
ActiveX control, the control's user interface is blocked until the user activates it. Following code is a fix for this problem. */
/* <script type="text/javascript" src="../flashIEUpdate.js"></script> */

theObjects = document.getElementsByTagName("object"); 
for (var i = 0; i < theObjects.length; i++) { 
theObjects[i].outerHTML = theObjects[i].outerHTML; 
}
