// Flash Detection / Redirect  v1.1.0


// use flash_detect.js to return the Flash version
var flashVersion = getFlashVersion();

// Redirect to appropriate page


if ((screen.width > 1024) && (screen.height > 768)) hasFlashURL = hasFlashURL1024;
else if ((screen.width > 800) && (screen.height > 600)) hasFlashURL = hasFlashURL800;
else if ((screen.width >= 640) && (screen.height >= 480)) hasFlashURL = hasFlashURL640;
else hasFlashURL = hasFlashURL640;


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);

