/******************************************************************** 

* IE Flash Fix 

* Fixes embedded object activation issues in Internet Explorer 

* 

* Add the next line below the last </object> in your HTML page 

* <script type="text/javascript" src="ieflashfix.js"></script> 

* 

* Code Source: http://www.amarasoftware.com/flash-problem.htm 

*********************************************************************/ 



theObjects = document.getElementsByTagName("object"); 

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

theObjects[i].outerHTML = theObjects[i].outerHTML; 

} 
