function popup(pfad) {
	popup_window = window.open("", "popup", "depent=yes,width=320,height=280,menubar=no,toolbar=no,status=no,location=no,scrollbars=yes,resizable=yes");
	popup_window.document.writeln('<html><body style="padding:0px;margin:0px;" onLoad="Groesse()">');
	popup_window.document.writeln('<a href="javascript:window.close();"><img name="pic" src="' + pfad + '" border="0"/></a></body>');
	popup_window.document.writeln('<script language="Javascript">');
	popup_window.document.writeln('// Copyright Mike Reiche, <reiche@nugmbh.de>');
	popup_window.document.writeln('function Groesse() {');
	popup_window.document.writeln('		if (document.pic.complete == true) {');
	popup_window.document.writeln('			width = Math.round((screen.width / 100) * 90);');
	popup_window.document.writeln('			height = Math.round((screen.height / 100) * 90);');
	popup_window.document.writeln('			if (document.pic.width < screen.width) { width = document.pic.width; }');
	popup_window.document.writeln('			if (document.pic.height < screen.height) { height = document.pic.height; }');
	popup_window.document.writeln('			posx = Math.round((screen.width / 2) - (width / 2));');
	popup_window.document.writeln('			posy = Math.round((screen.height / 2) - (height / 2));');
	popup_window.document.writeln('			window.moveTo(posx, posy);');
	popup_window.document.writeln('			window.resizeTo(width, height);');
	popup_window.document.writeln('			window.clearTimeout(pruefinterval);');
	popup_window.document.writeln('		}');
	popup_window.document.writeln('}');
	popup_window.document.writeln('pruefinterval = window.setTimeout("Groesse()",1000);');
	popup_window.document.writeln('</script></html>');
	popup_window.document.close();
	popup_window.focus();
}