\n');
/* If executed, the VBScript above checks for Flash and sets the hasFlash variable. If VBScript is not supported it's value will still be undefined, so we'll run it through another test. This will make sure even Opera identified as IE will be tested */
if (window.hasFlash != null) {
return window.hasFlash;
}
}
if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] && navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) {
var flashDescription = (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]).description;
return parseInt(flashDescription.charAt(flashDescription.indexOf(".") - 1)) >= nRequiredVersion;
}
return false;
}();
-->