/*
	- This one is to avoid the activate ActiveX click introduced by Microsoft patch.
   The solutions i found on Microsoft's page or elsewhere don't work for applets or are 
   hard/take-too-much time to implement. 
   Who likes to change the pages to write the whole applet through javascript!? 
   Also tested only on applets, this will work with other objects also.
 - import this file right before the </body> tag with:
 		<script type="text/javascript" src="[your_path]fix_ieactivate.js"></script>
 - you can use this script as you wish, just leave the @author part in.

 @author Cristian Senchiu http://www.senchiu.de
*/ 
if(navigator.appName.indexOf("Microsoft")!=-1){
objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
objects[i].outerHTML = objects[i].outerHTML;
}
}
