// 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( "logo2" ); 
  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; 

    } 
  } 
  var activeXObjTypes1 = new Array("div"); 

  for ( var i = 0; i < activeXObjTypes1.length; i++ ) 
  { 
    var xObj1 = document.getElementById("logo2");
      xObj1.outerHTML = xObj1.outerHTML; 

  } 
} 

 