<!--
// thanx to dynlayer duo
//var ns4 = (document.layers)? true:false
//var ie4 = (document.all)? true:false

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)
	this.ns4 = (this.b=="ns" && this.v==4)
	this.ns5 = (this.b=="ns" && this.v==5)
	this.ns6 = (this.b=="ns" && this.v==6)
	this.ie = (this.b=="ie" && this.v>=4)
	this.ie4 = (this.version.indexOf('MSIE 4')>0)
	this.ie5 = (this.version.indexOf('MSIE 5')>0)
	this.mac = (this.version.indexOf('Mac')>0)
	this.win32 = (navigator.appVersion.indexOf("Win9") != -1) || (navigator.appVersion.indexOf("WinNT") != -1) || (navigator.appVersion.indexOf("Windows 9") != -1) || (navigator.appVersion.indexOf("Windows NT") != -1) || (navigator.appVersion.indexOf("Windows") != -1)
	this.min = (this.ns||this.ie)
}

// automatically create the "is" object
is = new BrowserCheck()
//-->
