// --- image popup with resize	
	function ShowPic(s)
	{
		var neu = open('', 'Bildchen', 'resizable=yes,width=10,height=10,left=50,top=50');
		with (neu.document) {
			open('text/html')
			writeln('<script language="JavaScript">')
			writeln('function resizeMe() {')
			writeln('with (document.Bildchens) {')
			writeln('if (complete) {')
			writeln('window.resizeTo(width + 11, height + 29)')
			writeln('window.focus()')
			writeln('} else {')
			writeln('window.setTimeout("resizeMe()", 500)')
			writeln('}}}')
			write('<\/script><html><head><title>Zum Schließen des Fensters aufs Bild klicken</title></head>')
			write('<body topmargin=0 leftmargin=0 bgcolor=gray onLoad="resizeMe()"><table width=100% height=100% cellpadding=0 cellspacing=0><tr valign=middle><td align=center><a href=javascript:self.close()><img src="' + s + '" alt="Zum Schließen des Fensters aufs Bild klicken" name=Bildchens border=no></a>')
			writeln('</td></tr></table></body></html>')
			close()
		}
	}
