<!--
function BrowserDetection(){
	this.appName = "unbekannt";
	this.appVersion = "unbekannt";
	this.isIE = this.isFF = this.isOpera = this.isSafari = false;

	this.UA = navigator.userAgent.toLowerCase();

	// IE
	if(this.UA.search(/msie/) != -1){
		this.appName = "IE";
		this.isIE = true;
		this.appVersion = parseFloat(/(msie[^;]*)/.exec(this.UA)[0].split(" ")[1]);
		// Firefox
	}else if(this.UA.search(/opera/) != -1){
		this.appName = "Opera";
		this.isOpera = true;
		this.appVersion = parseFloat(/(opera[^\s]*)/.exec(this.UA)[0].split("/")[1]);
		// Firefox
	}else if(this.UA.search(/firefox/) != -1){
		this.appName = "Firefox";
		this.isFF = true;
		this.appVersion = parseFloat(/(firefox[^\s]*)/.exec(this.UA)[0].split("/")[1]);
		// Safari
	}else if(this.UA.search(/khtml/) != -1){
		this.appName = "Safari (Win)";
		this.isSafari = true;
		this.appVersion = parseFloat(/(version[^\s]*)/.exec(this.UA)[0].split("/")[1]);
	}
}

BrowserDetection.prototype.drawHint = function() {
//	document.write("appName:"+this.appName+" appVersion:"+this.appVersion);
	var check=(
		(this.isIE && this.appVersion>=7)
		 || (this.isOpera && this.appVersion>=9)
		 || (this.isFF && this.appVersion>=3)
		 || (this.isSafari && this.appVersion>=4)
	 );
	// TODO chrome check
//	(IE 6.0+, FF 2+, Safari 3.0+, Opera 9.0+, Chrome)
	if(!check) {
		document.write("<strong>Hinweis:</strong> Diese Seite ist optimiert und getestet f&uuml;r<br>" +
				"Internet Explorer 7+, Opera 9+, Mozilla Firefox 3+ sowie Safari 4+.<br>" +
				"Bei Verwendung anderer Browser bzw. Versionen kann es zu<br>" +
				"Einschr&auml;nkungen in Darstellung und Funktion kommen.");
	}
}

// BrowserDetection-Objekt erstellen
var objUA = new BrowserDetection();
// -->