<!-- Popupfunktion

function new_win(doc, breite, hoehe) {
	var left = (screen.width/2) - (breite/2);
	var top = (screen.height/2) - (hoehe/2) - 20;
	win = window.open("php/popup_bild.php?bildname=" + doc,"Fenster","height="+hoehe+",width="+breite+",status=no,toolbar=no,menubar=no,location=no,resizable=no,titlebar=no,scrollbars=yes,fullscreen=no,top="+top+",left="+left);
	win.focus();
}

//-->
