//this script has to be called after CSS declaration ... 
function actActiveX() {
  var cObjects=document.getElementsByTagName("OBJECT");
  for(var __i=0;__i<cObjects.length;__i++) {
    cObjects[__i].outerHTML=cObjects[__i].outerHTML;
  }
  oStyleSheet.addRule("OBJECT","display:block");
} 
// for IE only ... 
if(window.attachEvent) {
  var oStyleSheet=document.styleSheets[0];
  oStyleSheet.addRule("OBJECT","display:none");
  window.attachEvent("onload",actActiveX);  
}  
