<!--
 
 function detectFlash() {  
   // If navigator.plugins exists...
   if (navigator.plugins) {
     // ...then check for flash 2 or flash 3+.
     if (navigator.plugins["Shockwave Flash 2.0"]
         || navigator.plugins["Shockwave Flash"]) {
       var isVersion2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
       var flashDescription = navigator.plugins["Shockwave Flash" + isVersion2].description;
       // alert("Flash plugin description: " + flashDescription);
       var flashVersion = parseInt(flashDescription.charAt(flashDescription.indexOf(".") - 1));
      
       flash2Installed = flashVersion == 2;    
       flash3Installed = flashVersion == 3;
       flash4Installed = flashVersion == 4;
       flash5Installed = flashVersion == 5;
       flash6Installed = flashVersion >= 6;
     }
   }
   
   // Loop through all versions we're checking, and
   // set actualVersion to highest detected version.
   for (var i = 2; i <= maxVersion; i++) {  
     if (eval("flash" + i + "Installed") == true) gotflash = i;
   
   }
 }
 
 detectFlash();  // call our detector now that it's safely loaded.  
   
 // -->
    
   var testImg=new Image();
   testImg.src='/vector/testImg/'+gotflash+'.jpg';  