/*@cc_on
///////////////////////////
//Only IE uses Conditional JavaScript Compile so only IE will run this code.
//This is related to a lawsuit that changed how Microsoft can display Flash and other Active X Controls:
//	http://www.microsoft.com/windows/ie/ie6/using/techinfo/activexupdate.mspx
//	http://msdn2.microsoft.com/en-us/library/ms537508.aspx
//This code provides a workaround for ActiveX Objects. To use place this in each web page that uses ActiveX Controls.
//It can be placed anywhere within <html></html> and is most commonly placed within <head></head> tags. Example:
//	<head>
//		<title>Page Title</title>
//		<script language="jscript" type="text/jscript" src="FixActiveX.js"></script>
//	</head>
///////////////////////////
function FixActiveX() {
	var ActiveX_Tags = new Array('applet', 'embed', 'object');
	for (var n = 0; n < ActiveX_Tags.length; n++) {
		var ActiveX_Items = document.getElementsByTagName(ActiveX_Tags[n]);
		for (var m = 0; m < ActiveX_Items.length; m++) {
			ActiveX_Items[m].outerHTML = ActiveX_Items[m].outerHTML;
		}
		ActiveX_Items = null;
	}
	ActiveX_Tags = null;
}
if (window.attachEvent) {
	window.attachEvent('onload', FixActiveX);
}
@*/
