//Create a file called activeX.js
//Paste the following code into head of every page containing <object>, <embed>, or <applet> tags
// from http://www.webmasterworld.com/forum21/12209.htm
// onload of every page containing embed &/or object tags, load activeX.js
/* <script type="text/javascript" src="activeX.js"></script> 
    <script type="text/javascript"> window.onload = activateActiveX; </script> */
//THIS IS A WORKAROUND to fool the IE6,7,8 intentional so as to avoid 
//															noload of videos &/or click to load

// Attach this to the onload event handler to make sure all of the items  
// we're activating are available via the DOM. 
function activateActiveX() 
{ 
  var activeXObjTypes = new Array( "applet", "embed", "object" ); 
  for ( var i = 0; i < activeXObjTypes.length; i++ ) 
  { 
    var xObj = document.getElementsByTagName( activeXObjTypes[i] ); 
    for( var j = 0; j < xObj.length; j++ ) 
    { 
      xObj[j].outerHTML = xObj[j].outerHTML; 
    } 
  } 
} 


