// JavaScript Document

// This code will fix the "Click here to activate and use this control" issue in Internet Explorer.
// It should be included at the end of any page using ActiveX controls.
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
	theObjects[i].outerHTML = theObjects[i].outerHTML;
}
