function bildclick(n)
{
var bild = document.getElementById("ein_bild");
    bild.src = n;
}

// Bilddatei als Popup
function ausgabe(Pfad)
{
	var bildinhalt = document.getElementById("ein_bild");
	bild = new Image();
	bild.src = bildinhalt.src;
	var h = bild.height;
	var w = bild.width;
     var gestalt = "<html><head><title>Bild schließt automatisch...</title></head><body topmargin='0' leftmargin='0'>";
//     var gestalt = "<html><head><title>" + bild + "</title></head><body topmargin='0' leftmargin='0'>";
     var t1 = "<a onClick='self.close()'><img src='";
     var t2 = "'></a></body></html>";
//     var t2 = "'></a><br>"+ bild.src + "--" +  h + "--" + w + "--" +"</body></html>";
     popup = window.open("","popDialog"," height="+h+", width="+w+", scrollbars=no, top=100, left=150, resizable=no, status=no");
     popup.document.write(gestalt+t1+bild.src+t2);
     popup.document.close(300);
		popup.setTimeout('window.close()',8000);

};