function clientSideInclude(url) {

	var xmlHttp = null;
	try {
		// Mozilla, Opera, Safari sowie Internet Explorer (ab v7)
		xmlHttp = new XMLHttpRequest();
	} catch(e) {
		try {
			// MS Internet Explorer (ab v6)
			xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
		} catch(e) {
			try {
				// MS Internet Explorer (ab v5)
				xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
			} catch(e) {
				xmlHttp  = null;
			}
		}
	}

	if (xmlHttp) {
		xmlHttp.open('GET', url, true);
		xmlHttp.onreadystatechange = function () {
			if (xmlHttp.readyState == 4) {
				document.getElementById('ricardoMitteGross').innerHTML = xmlHttp.responseText;	
			}
		};
		xmlHttp.send(null);
	} else {
		alert("No XMLHTTPRequest objects");
	}

}

clientSideInclude('http://' + location.hostname + '/php/ricardo/showRicardoFeed.php?type=gross');
