<!--

//When the window has loaded... run the script
window.onload = function() {

 /*This workaround is to prevent the flash movies not loading, because
   of the way Internet Explorer now implements OBJECT tags. Normally,
   the browser would require you to click on the flash movie to start it,
   but this script cycles through the object tags & embed tags, removes them
   and then rewrites them into the document. This forces the objects to start
   straight away. */

 if(navigator.appName.indexOf("Internet Explorer") != -1) {
  objects = document.getElementsByTagName("object");
  for (var i = 0; i < objects.length; i++) {
   objects[i].outerHTML = objects[i].outerHTML;
  }//for

  embeds = document.getElementsByTagName("embed");
  for (var i = 0; i < embeds.length; i++) {
   embeds[i].outerHTML = embeds[i].outerHTML;
  }//for
 }//if

}//function

//-->