// <!-- Paste this code into an external JavaScript file named: fixFlash.js  -->

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Jeroen Haan :: http://www.haan.net/ */

/* -----------------------------------------------
   Explorer Object Starter - v.1
   (c) 2007 http://www.haan.net
   jeroen@haan.net
   You may use this script but please leave the credits on top intact.
   Please inform us of any improvements made.
   When useful, we will add your credits.
  ------------------------------------------------ */

// fixes the Internet Explorer ActiveX update 912812 which prevents third party plugins from running automatically


window.onload = function() {
 	fixFlash(); }
    function fixFlash() {
     	objects = document.getElementsByTagName("object");
     	for (var i = 0; i < objects.length; i++)
	   {
 		 objects[i].outerHTML = objects[i].outerHTML;
	 }
}
 Document