function fixclicktoacvate () {
   theObjects = document.getElementsByTagName("object");
   theObjects = (theObjects.length == 0) ? (document.getElementsByTagName("embed")) : ("");
   for (var i = 0; i < theObjects.length; i++) { theObjects[i].outerHTML = theObjects[i].outerHTML; }
}

function addLoadEvent(func) {
   var oldonload = window.onload;
   if (typeof window.onload != 'function') {
      window.onload = func;
   } else {
      window.onload = function()
      {
         if (oldonload) { oldonload(); }
         func();
      };
   };
}
//run our script after the page has loaded
addLoadEvent(fixclicktoacvate);

