fixit = function() {
theObjects = document.getElementsByTagName("object");
for (var id = 0; id < theObjects.length; id++) {
theObjects[id].outerHTML = theObjects[id].outerHTML;
}
}
if (window.attachEvent)
window.attachEvent("onload", fixit)
else
window.onload=fixit;