if ((navigator.userAgent.indexOf('MSIE') != -1)  && (navigator.userAgent.indexOf('Win') != -1)) {
	document.writeln('<script language="VBScript">');
	document.writeln('function activexenabled()');
	document.writeln('  on error resume next');
	document.writeln('  activex = (NOT IsNull(CreateObject("ScriptBridge.ScriptBridge")))');
	document.writeln('  activex2 = (NOT IsNull(CreateObject("MSComctlLib.Slider")))');
	document.writeln('  activex3 = (NOT IsNull(CreateObject("ScriptBridge.ScriptBridge.1")))');
	document.writeln('  if (activex OR activex2 OR activex3) then');
	document.writeln('	activexenabled = true');
	document.writeln('  else');
	document.writeln('	activexenabled = false');
	document.writeln('  end if');
	document.writeln('end function');
	document.writeln('</script>');
	this.activeX = activexenabled();
} else {
	this.activeX = false;
}