<!--
// BrowserCheck Object
// provides most commonly needed browser checking variables
// 19990326

// Copyright (C) 1999 Dan Steinman
// Distributed under the terms of the GNU Library General Public License
// Available at http://www.dansteinman.com/dynapi/
// Modified by Rick

/* Browser Identifier: Commands AND Variables generator */
function BrowserCheck() {
	var brwsrnam = navigator.appName
	if (brwsrnam=="Netscape") this.brwsrnam = "ns"
	else if (brwsrnam=="Microsoft Internet Explorer") this.brwsrnam = "ie"
	else this.brwsrnam = brwsrnam
	this.bver = parseInt(navigator.appVersion)
	ns = (this.ns = (this.brwsrnam=="ns" && this.bver>=4))
	nsold = (this.nsold = (this.brsrnam=="ns" && this.bver<4))
	ns4 = (this.ns4 = (this.brwsrnam=="ns" && this.bver==4))
	ns6 = (this.ns6 = (this.brwsrnam=="ns" && this.bver>=5))
	ie = (this.ie = (this.brwsrnam=="ie" && this.bver>=4))
	ie4 = (this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>0))
	ie5 = (this.ie5 = (navigator.userAgent.indexOf('MSIE 5')>0))
	if (this.ie5) this.bver = 5
	this.minimbr = (this.ns||this.ie)
}
// automatically create the "thisis" object
thisis = new BrowserCheck()
/* end generator */
// -->