// This code is used as a work around to fix the MS update 
// that will stop Internet Explorer users directly interacting
// with ActiveX controls loaded by the APPLET, EMBED, OBJECT elements.

theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
	theObjects[i].outerHTML = theObjects[i].outerHTML;
}
