function popupImg(img, descr)
{
	popImg = new Image();
	popImg.src = img;
	var width = popImg.width;
	var height = popImg.height;
	
	win = window.open('', '', 'width=' + 1 + ', height=' + 1 + ', scrollbars=yes, resizable=no');
	
	win.close();
	
	popImg = new Image();
	popImg.src = img;
	var width = popImg.width;
	var height = popImg.height;
	
	win = window.open('', '', 'width=' + width + ', height=' + height + ', scrollbars=yes, resizable=no');
	
	with (win.document) {
		open();
		write('<html>');
		write(' <head>');
		write(' <title>' + descr + '</title>');
		write(' <link href="{$css_path}/transform.css" rel="stylesheet" type="text/css" media="screen" />');
		write(' </head>');
		write(' <body style="margin: 0px; text-align:left;" onLoad="self.focus();">');
		write(' <a href="#" onClick="javascript:self.close()">')
		write(' <img src="' + img + '" alt="Fenster schliessen: Bitte auf das Bild klicken!" title="Fenster schliessen: Bitte auf das Bild klicken!" border="0" /></a>');
		write(' </body>');
		write('</html>');
		close();
	}
}
