function loadAJAXInfo(id, lang, type) {
	type= type || 1;
	var xmlhttp;
	if (window.XMLHttpRequest) {
		xmlhttp = new XMLHttpRequest();
	} else {
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange = function() {
		if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
			document.getElementById("ajax_response").innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET", "/counter.php?artid="+id+"&lang="+lang+"&type="+type, true);
	xmlhttp.send();
}
