<!--
  function loadEnhanced() {
    if (checkFlash()) { 
      // alert ("Loading Flash page...");
      self.location.href = "welcome.html";
    }
    return true;
  }

  function checkMime(mimetype) {
    if ((navigator.mimeTypes) && (navigator.mimeTypes[mimetype]) && 
      (navigator.mimeTypes[mimetype].enabledPlugin) ) {
      // alert ("checkMime is true");
      return true;
    }
    return false;
  }

  function checkFlash() {
    return ( (checkActiveXObject('ShockwaveFlash.ShockwaveFlash')) || 
      (checkMime("application/x-shockwave-flash")) ) 
  }

  function checkActiveXObject(object) {
    if (explorer && win32 && checkAXObject(object)) {
      // alert ("checkActiveXObject is true");
      return true;
    }
    return false;
  } 

  var explorer = navigator.appName.indexOf("Explorer") != -1;
  var win32 = (navigator.appVersion.indexOf("Win") != -1 && 
  navigator.appVersion.indexOf("16") == -1);
  loadEnhanced();
// -->
