<!-- Invisible to Non-JavaScript Browers

// Copyrighted 2001-2002 By Boulevard Group, LLC.  All Rights Reserved

// BrowserCheck Object

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.ie = (this.b=="ie" && this.v>=4)
	this.ie4 = (this.version.indexOf('MSIE 4')>0)
	this.ie5 = (this.version.indexOf('MSIE 5')>0)
	this.ie6 = (this.version.indexOf('MSIE 6')>0)
	this.min = (this.ns||this.ie)
	this.ie4mac = (this.version.indexOf('MSIE 4')>0) && (this.version.indexOf("Mac")>-1) && (!this.ns4)
	this.ns4mac = (this.v=4) && (this.version.indexOf("Mac")>-1) && (this.ns4)
	this.mac = (this.version.indexOf("Mac")>-1)
	this.win = (this.version.indexOf("Win")>-1)
}
is = new BrowserCheck()

// end BrowserCheck

if (is.ie) 
{
	if (is.ie6 || is.ie5) {
		var screenHeight = document.documentElement.offsetHeight;
		var screenWidth = document.documentElement.offsetWidth ;
	} else { // All Other IE ...
		var screenHeight = document.body.offsetHeight;
		var screenWidth = document.body.offsetWidth ;
	}
}
else if (is.ns) {
	var screenHeight = window.innerHeight;
	var screenWidth = window.innerWidth;
}

// Make Visible -->
