Publikationen
xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("jsonOutput").innerHTML = this.responseText;
}
}
xmlhttp.open("POST", "https://www.ph4.physik.uni-goettingen.de/gcms/literatur/publikationen-json.php?gruppe=Rizzi&start=2003", true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.send();