<!--
var browser;

if (navigator.product == "Gecko" && navigator.productSub && navigator.productSub > "20041010" && (navigator.userAgent.indexOf("rv:1.8") != -1 || navigator.userAgent.indexOf("rv:1.9") != -1)) {
	browser=1;
}
else {
	if(document.all && document.compatMode && !window.opera) {
		browser=2;
	}
	else {
		browser=3;
	}
}


function help(title,msg) {
	if (title=='') {
		title='Hilfe';
	}
	if (msg=='') {
		msg='Es ist keine Hilfe verfügbar';
	}
	return Tip(msg,ABOVE, false, JUMPHORZ, true, JUMPVERT, true, SHADOW, true, FADEIN, 170, FADEOUT, 170, DELAY, 300, WIDTH , -250, LEFT, true, TITLE, title);
}


// Ajax
var xmlHttp = null;
function ajax_send(dest) {
	if (dest == null || dest == '') {
		return;
	}

	  //document.getElementById("finden").focus();
	  
	if (typeof window.ActiveXObject != "undefined") {
//	if (window.ActiveXObject) {
		try {
			xmlHttp= new ActiveXObject("Msxml2.XMLHTTP");
		} 
		catch (e) {
			try {
				xmlHttp= new ActiveXObject("Microsoft.XMLHTTP");
				} 
				catch (e) { }
		}
	
	} 
	else if (window.XMLHttpRequest) {
		try {
			xmlHttp= new XMLHttpRequest();
		} 
		catch (e) { }
	}
	 
	if (xmlHttp) {
		xmlHttp.overrideMimeType('text/html;charset=iso-8859-1');
		xmlHttp.open('GET', dest, true);
		xmlHttp.onreadystatechange = ajax_receive;
		xmlHttp.send(null);
	}
	  
}


function ajax_receive() {
	if (xmlHttp.readyState == 4) {
		var text = xmlHttp.responseText;
		jsresponse(text);
	}

}

//-->