<!--
var plugin = 0;
var activeX = 0;
var IsFlash;
var NT;
var isXML;

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;

isXML = false;

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) {
               NT = ('NS2' + WinMac);
               isXML = true;
          } else {
             NT = ('NS1' + WinMac);
             isXML = false;
          }
      } else if (navigator.userAgent.indexOf("CS") != -1) {
         NT = ('NS2' + WinMac);
         isXML = true;
      } else {
         NT = ('NS1' + WinMac);
         isXML = false;
      }
} else {
   NT = ('IE1' + WinMac)
   strPos = navigator.appVersion.indexOf("MSIE");
   if (strPos != -1) {
      if (parseInt(navigator.appVersion.substr(strPos+5,1)) > 4) {
         isXML = true;
      }
   }
}
//alert('isXML = ' + isXML);
}




//IsFlash = false;
// -->
