// IE Object Fix
// Microsoft recently lost a legal battle with a patent holder about the way Internet Explorer displays 
// OBJECTs and EMBEDs in webpages. Microsoft then decided to update its Internet Explorer browser with 
// changes requiring user input to display and activate ActiveX based media.
//
// Mitchell Ideas fix - ieupdate.js
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}
