function searchActiveX(ActiveXName) {
var result = false;
	if (!window.opera && document.all) {
		/*@cc_on @*/
		/*@if ((@_jscript_version >= 3) && (@_win32 || @_win64))
			document.open();
			document.write('<scr'+'ipt language="VBScript"\>\nOn Error Resume Next\nDim ax\nax=False\nax=(IsObject(CreateObject("'+ActiveXName+'")))\n<\/scr'+'ipt\>\n');
			document.close();
			result = (ax) ? true : false;
			//alert("Now JScript version 3++ ( " + @_jscript_version + " )\nax ? = " + ax);
		@else @*/
			//alert("This browser is not Internet Explorer for Win32 or Win64 system");
		/*@end @*/
	}
	return result;
}
var flashplayer_ver = '';
if (navigator.plugins && navigator.mimeTypes['application/x-shockwave-flash']) {
	var plugin = navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin;
	flashplayer_ver = parseInt(plugin.description.match(/\d+\.\d+/));
} else {
	var actX = searchActiveX("ShockwaveFlash.ShockwaveFlash");
	if (actX) {
		var flashOCX = new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version").match(/([0-9]+)/);
		flashplayer_ver = parseInt(flashOCX[0]);
	}
}

