/*

How to solve the "click to activate and use this control" prompt box

IE Issue: 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.

This affects Flash files, QuickTime, RealPlayer, Java , Adobe Acrobat among others. It means users have to click the object first in order to activate its functions.

To fix the problem, insert the following Javascript just below the last <object> in your HTML page, : 
<script type="text/javascript" src="http://web.ncifcrf.gov/includefiles/ActivateActiveXobject-IEfix.js"></script>

*/

theObjects = document.getElementsByTagName("object");

for (var i = 0; i < theObjects.length; i++) {
	theObjects[i].outerHTML = theObjects[i].outerHTML;
}