<!--

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
	if (this.b=='ie'){ // Internet Explorer '4.0 (compatible; MSIE 5.5...'
		var ve = this.version.indexOf("MSIE")
		this.v = parseInt(this.version.substr(ve+4))
	}
	else this.v = parseInt(this.version)
	this.ns = (this.b=="ns" && this.v>=4)
	this.ns4 = (this.b=="ns" && this.v<5)
	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.ie55 = (this.version.indexOf('MSIE 5.5')>0) // AT 05.11.00
	this.min = (this.ns||this.ie)
}

is = new BrowserCheck();

if(is.ns4){
	document.write('<link href="1bsustylenn.css" rel="stylesheet" type="text/css">');}
else
{
	document.write('<link href="1bsustyle.css" rel="stylesheet" type="text/css">');
}

// -->


