// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(8,0,0);

// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
    // if we've detected an acceptable version
    // embed the Flash Content SWF when all tests are passed
} else {  // flash is too old or we can't detect the plugin
     window.location="index-nonFlash.html";  // insert non-flash content
}
