function showpics(bilderobj) {
	// Hole mir das Object, wo die reingehören
	var hilfsteil = document.getElementById("vorschaubilder");

	// Falls etwas drin ist, alles rauslöschen
	while(hilfsteil.hasChildNodes()) {
		hilfsteil.removeChild(hilfsteil.childNodes[0]);
	}

	// Generiere für jede Url ein Bild-Dings
	for(var i=0;i<bilderobj.length;i++) {
		var thumbkasten = document.createElement("td");
		thumbkasten.setAttribute("class","thumbkasten");
			var fotolink = document.createElement("a");
			fotolink.setAttribute("href","index.php?d="+bilderobj[i][1]);
				var neuesBild = document.createElement("img");
				neuesBild.setAttribute("src",bilderobj[i][0]);
				neuesBild.setAttribute("class","vorschaubild");
			fotolink.appendChild(neuesBild);
				var umbruch = document.createElement("br");
			fotolink.appendChild(umbruch);
				var neuerTitel = document.createTextNode("\""+bilderobj[i][2]+"\"");
			fotolink.appendChild(neuerTitel);
		thumbkasten.appendChild(fotolink);
		hilfsteil.appendChild(thumbkasten);
	}
}