
//
//  Fix Issue with Microsoft ActiveX in IE 6+
//
// 
//  Calling code:
//  <!--[if gte IE 6]> <comment id="to_be_rewritten"> <![endif]-->
//    <object>definition as usual</object>
//  </comment><script language="Javascript" src="../skins/activex.js"></script>
//
//  IE 6+ Browsers without Javascript will not display the content
//  Other browsers will display content as usual
//  IE 6+ with js will function as intended


var elem = document.getElementById("ms_activex");
if (elem != null)	
	document.write(elem.innerHTML);

//
//  End IE6+ fix