<!--
function BrowserCheck() {
	var b = navigator.appName
	if (b=="Netscape") this.b = "ns"
	else if (b=="Microsoft Internet Explorer") this.b = "ie"
	else this.b = b
	this.version = navigator.appVersion
	this.v = parseInt(this.version)
	this.ns = (this.b=="ns" && this.v>=4)
	if (this.ns) {
		if (this.b=="ns" && this.v==4) this.v = "4.0+"
		if (this.b=="ns" && this.v==5) this.v = "6.0"
	}
	this.ie = (this.b=="ie" && this.v>=4)
	if (this.ie) {
		if (this.version.indexOf('MSIE 4')>0) this.v = "4.0+"
		if (this.version.indexOf('MSIE 5')>0) this.v = " 5.0+"
   		if (this.version.indexOf('MSIE 6')>0) this.v = " 6.0+"
	}
	if (this.version.indexOf('Windows')>0) this.os = "OS WINDOWS"
	else this.os = "OS NON WINDOWS"
	this.min = (this.ns||this.ie)
}
is = new BrowserCheck();

if (is.min) {
	document.write("<span class=\"text3\">"+is.os+"<br>");
	if(!is.ie) {
		var winwidth = window.outerWidth;
		var winheight = window.outerHeight;
		document.write("NETSCAPE "+is.v+" OR MOZILLA COMPATIBLE<br>WINDOW SIZE: "+winwidth+"x"+winheight+"<br>");
	} else {
		var winwidth = screen.Width;
		var winheight = screen.Height;
		document.write("MS INTERNET EXPLORER "+is.v+"<br>"+winwidth+"x"+winheight+" SCREEN RESOLUSION<br>");
	}
}
//-->
