

  var FlashMode = 0;



  // <!-- attempt to detect at least Flash 6 -->

    if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] 
    && navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) 
    {

    if (navigator.plugins && navigator.plugins["Shockwave Flash"] 
    && (versionIndex = navigator.plugins["Shockwave Flash"].description.indexOf(".")) 
    != - 1) {

    var versionString = navigator.plugins["Shockwave Flash"].description.substring(versionIndex-1, versionIndex);

    versionIndex = parseInt( versionString );

    if ( versionIndex >= 5 ) {

    FlashMode = 1;

    }

    }

    }

    else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 
    

    && (navigator.userAgent.indexOf("Windows 95")>=0 || navigator.userAgent.indexOf("Windows 98")>=0 || navigator.userAgent.indexOf("Windows NT")>=0 
    )) {

    document.write('<SCRIPT LANGUAGE=VBScript\> \n');

    document.write('on error resume next \n');

    document.write('FlashMode = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5")))\n');

    document.write('</SCRIPT\> \n');

    }






    if ( FlashMode && document.all ) {

    // <!-- F6 -->

    document.write('<div id="flash"><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="735" HEIGHT="203" id="RIS_Home" ALIGN=""><PARAM NAME=movie VALUE="RIS_Home.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF><EMBED src="RIS_Home.swf" quality=high bgcolor=#FFFFFF  WIDTH="735" HEIGHT="203" NAME="RIS_Home" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT></div>');

    } else {

    // <!-- neither SW8.5 nor F5 are installed-->

    document.write('<img src="images/home_noflash.gif" width="735" height="203" alt="" border="0">');

    } 



