<!--
bn = navigator.appName;
bv = navigator.appVersion.substring(0,1);

if (navigator.userAgent.indexOf('Opera') != -1 && navigator.userAgent.indexOf('MSIE') != -1) bn = 'Netscape';

if (bn != 'Netscape')
{ var tmp = navigator.appVersion.split(';'); tmp = tmp[1].split(' '); bv = tmp[2]; }

var gNoFlasStr='';

function flashDetectHTML(f,nof,rv)
{
if (bn == 'Netscape')
{
    if (navigator.plugins['Shockwave Flash'] )
    { 
       tmp = navigator.plugins['Shockwave Flash'].description; 
       tmp = tmp.split(' ');
       fver = tmp[2].split('.');
       fver = fver[0];

       if (fver < rv ) document.write(nof);
       else  document.write(f); 
    } 
    else document.write(nof); 
} 
else 
{
    if (navigator.userAgent.indexOf('Win') != -1) 
    {
         gNoFlasStr = nof;
         window.onerror = hideErrorMsg;
         var flash = null;
         flash = new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+rv);

         if (flash == null) document.write(nof); 
         else document.write(f); 
    } 
    else document.write(f); }
}

function hideErrorMsg (msg, url, ln) { document.write(gNoFlasStr); window.onerror=null; return true; }
//-->

