// ------------------------------------------------------------------------------------
// Ajax-Gesummsel
if      (window.XMLHttpRequest) { http = new XMLHttpRequest(); } 
else if (window.ActiveXObject)  { http = new ActiveXObject("Microsoft.XMLHTTP"); }

function GetAjaxContent(Url, DivID) {
	if (http==null)                             { return; }
	if (document.getElementById(DivID) == null) { return; }

	FillAjaxDiv = DivID;
	http.onreadystatechange=Ajax_FillDiv;
	http.open("GET",Url,true);
	http.send(null);
}

function Ajax_FillDiv() {
	if (http.readyState==4) {
		if (http.responseText.length > 0) {
			document.getElementById(FillAjaxDiv).style.display = 'block';
			document.getElementById(FillAjaxDiv).innerHTML = http.responseText;
		}
		else {
			document.getElementById(FillAjaxDiv).style.display = 'none';
		}
	}
}

function mz_merken(inr) {
	GetAjaxContent('/mobile-merkliste.php?q='+q+'&c='+c+'&inr='+inr, 'mz_area');
}

function mz_check() {
	GetAjaxContent('/mobile-merkliste.php?q='+q+'&c='+c+'&inr=check', 'mz_area');
}

