function mc_get_flash_version(){var version='0.0.0';if(navigator.plugins && navigator.mimeTypes['application/x-shockwave-flash']){var plugin=navigator.mimeTypes['application/x-shockwave-flash'].enabledPlugin;if (plugin && plugin.description) {version=plugin.description.replace(/^[A-Za-z\s]+/, '').replace(/(\s+r|\s+b[0-9]+)/, ".");}}else {var x='';try {var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");x=axo.GetVariable("$version");}catch(e) {try {axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");x="WIN 6,0,21,0";axo.AllowScriptAccess="always";x=axo.GetVariable("$version");}catch(e) {if (!x.match(/^WIN/)) {try {axo=null;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");x=axo.GetVariable("$version");}catch(e) {if (axo) {x="WIN 3,0,18,0";}else {try {axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");x="WIN 2,0,0,11";}catch(e) {x="WIN 0,0,0,0";}}}}}}version=x.replace(/^WIN /,'').replace(/,[0-9]+$/,'').replace(/,/g,'.');}if (version.match(/^[0-9]+\.[0-9]+\.[0-9]+$/)) {return version.split(".");}else {return '0.0.0';}};function mc_flash_version_check(compare_ver){var version=mc_get_flash_version();var subversion=(compare_ver) ? compare_ver.replace(/\./gm, ",").split(",") : -1;if (parseInt(version[0]) > parseInt(subversion[0])){return true;}else if (parseInt(version[0])==parseInt(subversion[0])){if (parseInt(version[1]) > parseInt(subversion[1])){return true;}else if (parseInt(version[1])==parseInt(subversion[1])){if (parseInt(version[2]) >= parseInt(subversion[2])){return true;}else{return false;}}}else{return false;}};