<!--
var bName = navigator.appName;
var bVersion = bName ? (navigator.appVersion.split(';').toString().split(" ").toString().split(',')[4] ) : null;
var agt = navigator.userAgent.toLowerCase();
function bws()
{
	this.isDOMm = document.layers ? true : false;
	this.isDOMM = document.all ? true : false;
	this.isDOM = document.getElementById ? true : false;
	this.isOP = (this.isDOM && (bName == "Opera")) ? true : false;
	this.isOP5 = (this.isOP && (agt.indexOf('5') != -1)) ? true : false;
	this.isIE = (bName == "Microsoft Internet Explorer") ? true : false;
	this.isIE3 = (this.isIE && (bVersion <= 3) && (agt.indexOf('3') != -1)) ? true : false;
	this.isIE4 = (this.isDOMM && !this.isDOM && this.isIE && (bVersion < 5) && (bVersion >= 4)) ? true : false;
	this.isIE5 = (this.isDOM && this.isIE && (bVersion < 6) && (bVersion >= 5)) ? true : false;
	this.isIE6 = (this.isDOM && this.isIE && (bVersion >= 6)) ? true : false;
	this.isNS = (bName == "Netscape") ? true : false;
	this.isNS3 = (this.isNS && (bVersion >= 3) && (bVersion < 4)) ? true : false;
	this.isNS4 = (this.isDOMm && !this.isDOM && this.isNS && (bVersion >= 4) && (bVersion < 5)) ? true : false;
	this.isNS5 = (this.isNS4 && (bVersion >= 5)) ? true : false;
	this.isNS6 = (this.isDOM && this.isNS) ? true : false;
	this.isMoz09 = (this.isDOM && (agt.indexOf('mozilla') != -1)) ? true : false;
	this.isBW = (this.isIE4 || this.isIE5 || this.isIE6 || this.isNS4 || this.isNS6 || this.isOP5) ? true : false;
	return this;
}
bw = new bws()
//-->
