function BrowserInfo(){

	this.NavName = navigator.appName;
	this.NavUA   = navigator.userAgent;
	this.NavVer  = navigator.appVersion;
	this.NavPlug = navigator.plugins;
	this.NavVsub = navigator.vendorSub;
	this.NavVerI = parseInt(this.NavVer);
	this.NavVerF = parseFloat(this.NavVer);
	
	this.Ver;
	
	this.NN = (this.NavName == "Netscape");
	if(this.NN) {
		if(this.NavUA.indexOf("Mozilla/4") != -1)  this.Ver = 4;
		if(this.NavUA.indexOf("Netscape6/") != -1) this.Ver = 6;
		if(this.NavUA.indexOf("Netscape/7") != -1) this.Ver = 7;
	}
	
	this.IE = (this.NavName == "Microsoft Internet Explorer");
	//Sleipnir
	if(this.IE) {
		if(this.NavUA.indexOf('MSIE 3')>0)    this.Ver = 3;
		if(this.NavVer.indexOf('MSIE 4.5')>0)  this.Ver = 4.5;
		if(this.NavVer.indexOf('MSIE 4.01')>0) this.Ver = 4.01;
		if(this.NavVer.indexOf('MSIE 4')>0)    this.Ver = 4;
		if(this.NavVer.indexOf('MSIE 5')>0)    this.Ver = 5;
		if(this.NavVer.indexOf('MSIE 6')>0)    this.Ver = 6;
	}

	this.Gecko   = (this.NavUA.indexOf("Gecko") != -1);
	this.Safari  = (this.NavUA.indexOf("Safari",0) != -1);
	this.Cab     = (this.NavUA.indexOf("iCab",0) != -1);
	this.Opera   = (this.NavUA.indexOf("Opera",0) != -1);
	this.Firefox = (this.NavUA.indexOf("Firefox",0) != -1);

	this.Win = (this.NavUA.indexOf("Win",0) != -1);
	this.XP  = (this.NavUA.match(/NT 5\.1|XP/));
	this.ME  = (this.NavUA.match(/4\.90|ME/));
	this.TK  = (this.NavUA.match(/NT 5\.0|2000/));
	this.NT  = (this.NavUA.match(/NT 5\.0|WinNT/));

	this.Mac  = (this.NavUA.indexOf("Mac",0) != -1);
	this.M68k = (this.NavUA.indexOf("68k",0)!=-1);

	this.Uix = (this.NavUA.indexOf("X11",0) != -1);
	this.EGB = (this.NavUA.indexOf("Planetweb",0) != -1);

}

