<!--
function oBrowser( bIE, bNS, bMz, bXx, pName, pVer ) {
  this.bIE = bIE;
  this.bNS = bNS;
  this.bMz = bMz;
  this.bXx = bXx;
  this.pName = pName;
  this.pVer = pVer;
  this.jsCheckBrowser = jsCheckBrowser;
}

function jsCheckBrowser() {
  if( navigator.appName && navigator.appName.indexOf("Microsoft") != -1 ) {
    this.bIE = true;
    this.pName = "Internet Explorer";
    this.pVer = navigator.appVersion.charAt(0);
  }
  else if( !(navigator.appName && navigator.appName.indexOf("Netscape")>=0 && navigator.appVersion.indexOf("2.")>=0) ) {
    this.bNS = true;
    this.pName = "Netscape";
    this.pVer = navigator.appVersion.charAt(0);
  }
  else if( navigator.userAgent.indexOf("Mozilla/2") != -1 ) {
    this.bMz = true;
    this.pName = "Mozilla";
    this.pVer = navigator.appVersion.charAt(0);
  }
  else {
    this.bXx = true;
    this.pName = "Unknown: "+navigator.appName;
    this.pVer = navigator.appVersion;
  }
}

var goBrowser = new oBrowser(false,false,false,false,"","");

var goWinShips = 0;
var goWinPlani = 0;
var gpPointNum = 0;
//-->
