1) Just below the last <object> in your HTML page, insert the following Javascript:
<script type="text/javascript" src="ieupdate.js"></script>
2) Open a new document in Notepad or your HTML editor, and copy & paste the following content into it:
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}
3) Save this file as ieupdate.js
4) Upload both files to your webserver, and the problem should be solved.
Thats It!
I wish you all the best of luck.