function loadAds(utype)
{
	var xmlHttp1 = false;
	try {
    xmlHttp1  = new ActiveXObject("Msxml2.XMLHTTP");
	} 
	catch(e) {
	    try {
	        xmlHttp1  = new ActiveXObject("Microsoft.XMLHTTP");
	    } catch(e) {
	        xmlHttp1  = false;
	    }
		}
// ... für Mozilla, Opera und Safari
	if (!xmlHttp1  && typeof XMLHttpRequest != 'undefined') {
		xmlHttp1 = new XMLHttpRequest();
	}
	if (xmlHttp1) {
		xmlHttp1.open('GET', 'sys/myproads.php?ads_id=ads_4b842f4212a09', true);
		xmlHttp1.onreadystatechange = function () {
        if (xmlHttp1.readyState == 4) {
			 var data = xmlHttp1.responseText;
             document.getElementById("myproads_content").innerHTML = data;
		}
	};
     xmlHttp1.send(null);
	}
}

function clicklog(code)
{
	var xmlHttp1 = false;
	try {
    xmlHttp1  = new ActiveXObject("Msxml2.XMLHTTP");
	} 
	catch(e) {
	    try {
	        xmlHttp1  = new ActiveXObject("Microsoft.XMLHTTP");
	    } catch(e) {
	        xmlHttp1  = false;
	    }
		}
// ... für Mozilla, Opera und Safari
	if (!xmlHttp1  && typeof XMLHttpRequest != 'undefined') {
		xmlHttp1 = new XMLHttpRequest();
	}
	if (xmlHttp1) {
		xmlHttp1.open('GET', 'sys/myproads_click.php?code='+code, true);
		xmlHttp1.onreadystatechange = function () {
        if (xmlHttp1.readyState == 4) 
		{
		}
	};
     xmlHttp1.send(null);
	}
}
