
<!--
var plugin = 0;
var activeX = 0;
var IsFlash;

var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;

if ( plugin ) {
	plugin = parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= 5;
}
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.userAgent.indexOf("Windows")>=0)) {
	document.write('<SCRIPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('activeX = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5")))\n');
	document.write('<' + '/SCRIPT>');
}
if ( plugin || activeX) {
  IsFlash = true;
}

function NavType() {
var strPos;
var WinMac;

if(navigator.appVersion.indexOf("Macintosh") != -1) {WinMac = "Mac";}
		else {WinMac = "Win";}


if(navigator.appName.indexOf("Netscape")!=-1) {
      strPos = navigator.userAgent.indexOf("Netscape/");
      if (strPos > 0) {
          if (parseInt(navigator.userAgent.substr(strPos+9,1)) > 6) {
               return ('NS2' + WinMac)
          } else {
             return ('NS1' + WinMac)
          }
      } else if (navigator.userAgent.indexOf("CS") != -1) {
         return ('NS2' + WinMac)
      } else {
         return ('NS1' + WinMac)
      }
} else {
   return ('IE1' + WinMac)
}
}


//IsFlash = false;
//-->

