// Flash Detection / Redirect  v1.1.0
// http://www.dithered.com/javascript/flash_redirect/index.html
// code by Chris Nott (chris@dithered.com)


// use flash_detect.js to return the Flash version
var flashVersion = getFlashVersion();

// Redirect to appropriate page
if (flashVersion >= requiredVersion) location.replace(hasFlashURL);
else if (flashVersion > 0) location.replace(upgradeURL);
else if (flashVersion == 0) location.replace(noFlashURL);
else if (flashVersion == flashVersion_DONTKNOW || flashVersion == null) location.replace(dontKnowURL);

