//MikeZutz
// Detects if running script and flash if sucessful it checks if your running a screen reader 
try {
    if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
        //alert("script detection err");
        location.href=redirectionLocation;    
    } else {
        var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
        if(hasRightVersion) {  // if we've detected an acceptable version
           //good
          //check if runing ScreenReader If so redirect to page
        AC_FL_RunContent(
            'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0',
            'width', '1',
            'height', '1',
            'src', '/home/feedback/captcha/srdetect?rdPage='+redirectionLocation+'',
            'quality', 'high',
            'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
            'align', 'middle',
            'play', 'true',
            'loop', 'true',
            'scale', 'showall',
            'wmode', 'window',
            'devicefont', 'false',
            'id', 'srdetect',
            'bgcolor', '#ffffff',
            'name', 'srdetect',
            'menu', 'true',
            'allowFullScreen', 'false',
            'allowScriptAccess','sameDomain',
            'movie', '/home/feedback/captcha/srdetect?rdPage='+redirectionLocation+'',
            'salign', ''
            ); //end AC code


        } else {  // flash is too old or we can't detect the plugin
               location.href=verTooOldLocation;         
        }
    }//Detect
} catch (e) {
    location.href=redirectionLocation;
    //alert("eeeeeeeeeerrrrr " +e);
}//end try
// -->
