// en typ dit dan ff in je index.html: 
// <script type="text/javascript" src="relative_dir_to_js_file/flashfix.js"></script>


flashfix = function() {
  embobj = document.getElementsByTagName("object");
  // get all embedded objects from the page

  for (var i = 0; i < embobj.length; i++) {
    embobj[i].outerHTML = embobj[i].outerHTML;
    // simulate a click by reloading the object
  }
} 

if (window.attachEvent) {
  window.attachEvent("onload", flashfix)
}
else {
  window.onload=flashfix;
}

