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++) {
  htmlObjects[i].outerHTML += "";
 }
}

