<!--
var browsername;

if (navigator.userAgent.indexOf("MSIE") != -1) {
	browsername="ie";
}


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;
	}
	  
	if (window.XMLHttpRequest) {
		try {
			xmlHttp= new XMLHttpRequest();
		} 
		catch (e) { }
	}
	else if (typeof window.ActiveXObject != "undefined") {
//	if (window.ActiveXObject) {
		try {
			xmlHttp= new ActiveXObject("Msxml2.XMLHTTP");
		} 
		catch (e) {
			try {
				xmlHttp= new ActiveXObject("Microsoft.XMLHTTP");
				} 
				catch (e) { }
		}
	
	} 
	 
	if (xmlHttp) {
	
	
		if (browsername!="ie") {
			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);
	}

}

//-->
