window.onload = fixClickMeObjProblem;

function fixClickMeObjProblem() {

 //Fix Eolas' patent ('Click to activate and use this control' problem in Opera/IE)

 var htmlObjects = document.getElementsByTagName("object");

 for (i = 0; i < htmlObjects.length; i++) {

 if (htmlObjects[i].className!="static")

  htmlObjects[i].outerHTML += "";

 }

}


