//
function zeige_foto(name, beschreibung, width, height){
document.getElementById("foto").style.display ="block";
		document.getElementById("foto").style.background ="url("+name+") no-repeat rgb(255,255,255)";
		document.getElementById("foto").style.top ="3px";
		document.getElementById("foto").style.left ="430px";
		document.getElementById("foto").style.width =width+"px";
		document.getElementById("foto").style.height =height+"px";
		document.getElementById("foto").style.border ="groove yellow 4px";
		document.getElementById("foto").style.visibility ="visible";
		document.getElementById("foto").style.textSize = "11px";
		document.getElementById("bildunterschrift").style.width =width+"px";
		document.getElementById("bildunterschrift").style.color = "rgb(210,7,2)";
		document.getElementById("bildunterschrift").innerHTML =beschreibung;
	}
	
function verberge_foto(){
		document.getElementById("foto").style.top ="-1000px";
	}
