  // START CODE THAT DETECTS IF FLASH IS SUPPORTED.
  //
  // This code will set the IsAnyFlashSupportPresent variable to true if Flash is currently supported.
  // It tests for any Flash version between 3 and 20.
  //
  IsIEBrowserOnWindows = false;
  IsIEBrowserOnWindows = ((navigator.appName) && (navigator.appName == 'Microsoft Internet Explorer') && (navigator.userAgent) && (navigator.userAgent.indexOf("Win") != -1));
  //
  // VBScript check for Flash ActiveX control in IE browsers running on Windows.
  // VBScript is the ONLY method of detecting Flash support on IE browsers that are running on Windows.
  if (IsIEBrowserOnWindows)
    {
      document.write(
      '<sc' + 'rip' + 't lan' + 'gua' + 'ge=VB' + 'Sc' + 'rip' + 't>' + '\n' + 
      'Function Flash_CheckForActiveXonIEBrowserOnWindows()' + '\n' + 
      'Dim hasPlayer, playerversion' + '\n' + 
      'hasPlayer = false' + '\n' + 
      'playerversion = 50' + '\n' + 
      'Do While playerversion >= 3' + '\n' +
      'On Er' + 'ror Res' + 'ume Next' + '\n' +
      'hasPlayer = (IsObject(CreateObject(\"ShockwaveFlash.ShockwaveFlash.\" & playerversion & \"\")))' + '\n' + 
      'If hasPlayer = true Then Exit Do' + '\n' +
      'playerversion = playerversion - 1' + '\n' + 
      'Loop' + '\n' +
      'Flash_CheckForActiveXonIEBrowserOnWindows = hasPlayer' + '\n' + 
      'End Function' + '\n' + 
      '<\/s' + 'cri' + 'pt>');
    };
  //
  function CheckForAnyFlashSupport() {
    //
    // Check for Flash mimeType support on all browsers.
    if ((navigator.mimeTypes) && (navigator.mimeTypes["application/x-shockwave-flash"]))
      {
        IsAnyFlashSupportPresent = true;
      };
    // Check for Flash ActiveX controls using VBScript for IE browser running on Windows.
    if ((!IsAnyFlashSupportPresent) && (IsIEBrowserOnWindows))
      {
        IsAnyFlashSupportPresent = (Flash_CheckForActiveXonIEBrowserOnWindows());
      };
    return IsAnyFlashSupportPresent;
  };
  //
  IsAnyFlashSupportPresent = false;
  IsAnyFlashSupportPresent = CheckForAnyFlashSupport();
  // The IsAnyFlashSupportPresent variable will be true if Flash is currently supported in some form.
  //
  // END CODE THAT DETECTS IF FLASH IS SUPPORTED.

  if (IsAnyFlashSupportPresent)
    {
      document.write('<OBJECT CLASSID=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" CODEBASE=\"http:\/\/active.macromedia.com\/flash4\/cabs\/swflash.cab\#version=4,0,0,0\" ID=\"blueprowler\" WIDTH=\"770\" HEIGHT=\"250\"><PARAM NAME=\"movie\" VALUE=\"blueprowler.swf\"><PARAM NAME=\"quality\" VALUE=\"best\"><PARAM NAME=\"bgcolor\" VALUE=\"\#FFFFFF\"><EMBED NAME=\"blueprowler\" SRC=\"blueprowler.swf\" QUALITY=\"high\" BGCOLOR=\"\#FFFFFF\" WIDTH=\"770\" HEIGHT=\"250\" TYPE=\"application\/x-shockwave-flash\" PLUGINSPAGE=\"http:\/\/www.macromedia.com\/shockwave\/download\/index.cgi\?P1_Prod_Version=ShockwaveFlash\"><\/EMBED><\/OBJECT>');
    } else {
               document.write('<IMG SRC=\"exblprwlr3.jpg\" WIDTH=\"560\" HEIGHT=\"240\" BORDER=\"0\" ALIGN=\"top\" VSPACE=\"0\">');
             };
