var win = true;

function ShowPic(url,breit,hoch)
	{
	if (win.closed == false) { win.close(); }
	
	breit = String( Number(breit) +31);
	hoch  = String( Number(hoch)  +31);
	
	win = window.open('','popup','width='+ breit +',height='+ hoch +',dependent=yes,toolbar=no,directories=no,status=no,scrollbars=0,resizable=no,menubar=no,location=no,copyhistory=no,screenX=150,screenY=150');
	
	win.document.write('<html><head><title>FLYER</title></head>');
	win.document.write('<body bgcolor="#000000">');
	win.document.write('<p align="center">');
	
	if (navigator.appName == "Netscape") { win.document.write('<img src="images/pixel.gif" width="1" height="7" alt=""><br>'); }
	
	win.document.write('<img src="'+ url +'" alt="Flyer" onClick="self.close()" border="0">');
	win.document.write('</p></body></html>');
	
	win.document.close();
	}