var xmlHttp = null;
var str = null;
// Mozilla, Opera, Safari sowie Internet Explorer (ab v7)
if (typeof XMLHttpRequest != 'undefined') {
    xmlHttp = new XMLHttpRequest();
}
if (!xmlHttp) {
    // Internet Explorer 6 und älter
    try {
        xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
    } catch(e) {
        try {
            xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
        } catch(e) {
            xmlHttp  = null;
        }
    }
}
function ax_load( to_load ){
	if (xmlHttp) {
    xmlHttp.open('GET', to_load+'?ax=1', true);
    xmlHttp.onreadystatechange = function () {
        if (xmlHttp.readyState == 4) {
			sethtml("div_content", xmlHttp.responseText);
        } else {
			sethtml("div_content", 'Daten werden geladen...<br><img alt="Ladegrafik" src="jscripts/loading.gif">');
		}
	};
    xmlHttp.send(null);
	return false;
}
}
function ax_get( to_load , to_show ){
	if (xmlHttp) {
    xmlHttp.open('GET', to_load, true);
    xmlHttp.onreadystatechange = function () {
        if (xmlHttp.readyState == 4) {
			document.getElementById(to_show).innerHTML=xmlHttp.responseText;
	    }
    };
    xmlHttp.send(null);
	return false;
}
}