//this will prevent later versions of IE from displaying a "click to activate this control"
//message forcing the user to click once to activate then again to actually go to the feature
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
	theObjects[i].outerHTML = theObjects[i].outerHTML;
}
