
<!--

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.v = parseInt(navigator.appVersion);
this.ns = (this.b == "ns" && this.v >= 4);
this.ns3 = (this.b == "ns" && this.v == 3); 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 = (navigator.userAgent.indexOf('MSIE 4')>0);
this.ie5 = (navigator.userAgent.indexOf('MSIE 5')>0);
if (this.ie5) this.v = 5;
this.dhtml = (this.ns||this.ie);
}

// ns = Netscape 4.x oder höher
// ns3 = Netscape 3.x
// ns4 = Netscape 4.x
// ns5 = Netscape 5.x
// ie = MSIE 4.x oder höher
// ie4 = MSIE 4.x
// ie5 = MSIE 5.x
// dhtml = Netscape und MSIE 4.x oder höher

// mit is = new BrowserCheck() wird ein neues Objekt erzeugt

//is = new BrowserCheck()
// if (is.ns4 == true)
	//{window.location.href = "Netscape.htm";}
	// document.writeln('<link rel="stylesheet" type="text/css" href="styles/ns4.css">');
 //else (is.ie4 == true)
	//{window.location.href = "IE.asp";}
 	// document.writeln('<link rel="stylesheet" type="text/css" href="styles/ie4.css">');


// -->