// Script to defeat the Microsoft active content problem.
// See: http://www.adobe.com/devnet/activecontent/articles/devletter.html
// See: http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/overview/activating_activex.asp
// See: http://activecontent.blogspot.com/
var theObjects = document.getElementsByTagName ("object"); 
for (var i = 0; i < theObjects.length; i++) { 
	theObjects[i].outerHTML = theObjects[i].outerHTML; 
}