// JavaScript Document: fix_061706.js
// Description: Microsoft Internet Explorer "click to activate and use this control" fix
// Date: Applied June 17, 2006, BDJ

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