/*  ObjBrow.js
* Copyright (c) 2001 by Horst Gärtner, Kurort Jonsdorf.
* http://www.webdesign-hg.de
* Alle Rechte vorbehalten.
* Datum:       08.03.2002
* Aenderungen:
*/
function ClsBrowser() {
var bro = navigator.appName;
if(bro == "Netscape") {  this.bro="NS";}
 else if (bro=="Microsoft Internet Explorer"){
  this.bro = "IE";}
  else{ this.bro = bro; }
 this._op3 =(navigator.userAgent.indexOf('Opera')>-1);
 this.ver = parseInt(navigator.appVersion);
 this.NS =(this.bro=="NS" && this.ver>=4);
 this.NS3 =(this.bro=="NS" && this.ver==3);
 this.NS4 =(this.bro=="NS" && this.ver==4);
 this.NS6 =(this.bro=="NS" && this.ver>4);
 this.IE =(this.bro=="IE" && this.ver>=4);
 this.OP3 = (this.bro=="NS" && this._op3);
 this.OP = this._op3;
 this.IE4 =(navigator.userAgent.indexOf('MSIE 4')>-1);
 this.IE5 =(navigator.userAgent.indexOf('MSIE 5')>-1);
 this.IE6 =(navigator.userAgent.indexOf('MSIE 6')>-1);
 this.OP6 =(navigator.userAgent.indexOf('Opera 6')>-1);
 this.NS7 =(navigator.userAgent.indexOf('Gecko')>-1);
 if (this.IE5) {this.ver=4;}
 this.DHTML = ((this.NS||this.IE)&&(!this.op3));
 this.DOM = (this.IE5||this.IE6||this.NS6);
  }//end Object
