function checkBrowser()
	{
	this.ver=navigator.appVersion;
	this.dom=document.getElementById?1:0;
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie55=(this.ver.indexOf("MSIE 5.*")>-1 && this.dom)?1:0;
	this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;
	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0;
	this.ok=(this.ie5 || this.ie55 ||this.ie6||this.ns6)
	return this
	}

var browser = new Object()
browser = checkBrowser();

if(!browser.ok) location.href="updateBrowser.asp"
	
var theDiv = document.getElementById