/*
 * BS | nbsp GmbH | Erstellen des "AJAX"-Objektes um AJAX-Requests handeln zu koennen
 * **********************************************************************************
 */

var xmlhttp = null;
var siteurl = "http://"+location.host;

function ajaxload() {
    // Mozilla
    if (window.XMLHttpRequest) {
        xmlhttp = new XMLHttpRequest();
    }
    // IE
    else if (window.ActiveXObject) {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    // Kein Javascript
    else {
        //alert('Kein Javascript');
        return false;
    }
}
ajaxload();



