
        
//Flash Plugin Check start       
         

var ua, uos, checkFlashPlugin = false;
if (navigator.userAgent.indexOf("MSIE 3", 0) >= 0) ua = "IE3";
else if (navigator.userAgent.indexOf("MSIE 4", 0) >= 0) ua = "IE4";
else if (navigator.userAgent.indexOf("MSIE 4.5", 0) >= 0) ua = "IE4.5";
else if (navigator.userAgent.indexOf("MSIE", 0) >= 0) ua = "IE";
else if (navigator.appName.indexOf("Netscape", 0) >= 0) ua = "NN"
else us = "UNKNOWN";
if (navigator.userAgent.indexOf("Win", 0) >= 0) uos = "WIN";
else if (navigator.userAgent.indexOf("Mac", 0) >= 0) uos = "MAC";
else uos = "UNKNOWN";
if(ua != "IE3" || ua == "NN") {
        if (uos == "WIN" && ua.indexOf("IE", 0) >= 0) {
                document.writeln('<script language=\"VBscript\">on error resume next');
                document.writeln('checkFlashPlugin = IsObject(CreateObject(\"ShockwaveFlash.ShockwaveFlash.5\"))<\/script>');
        } else if (((uos == "MAC" && ua == "IE") || ua == "NN") && navigator.plugins["Shockwave Flash"]) {
                if (parseFloat(navigator.plugins["Shockwave Flash"].description.substring(navigator.plugins["Shockwave Flash"].description.indexOf("Flash") + 6, navigator.plugins["Shockwave Flash"].description.lastIndexOf(" "))) >= 5) checkFlashPlugin = true;
        }
}
if (!checkFlashPlugin) location.href = "noplugin.html";

