// JavaScript Document
// This file is needed to fix the activeX 
// flash issue. Place this file in the 
// root directory of the website. 
// GT

theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}
