var okno = null;
 function gal_preview(img,width,height)
 {
	 if ((okno != null) && (!okno.closed))
	 {
		 okno.close();
	 }
	 okno = window.open("", "Podglad", "width=" + width + ",height=" + height);
	 okno.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');
	 okno.document.writeln('<html>');
	 okno.document.writeln('<head>');
	 okno.document.writeln('<meta http-equiv="content-type" content="text/html;charset=iso-8859-2">');
	 okno.document.writeln('<title>ROPS</title>');
	 okno.document.writeln('</head>');
	 okno.document.writeln('<body style="margin: 0px;">');
	 okno.document.writeln('<table border="0" cellpadding="0" cellspacing="0" style="width: 100%; height: 100%;">');
	 okno.document.writeln('<tr>');
	 okno.document.writeln('<td onMouseOver="this.style.cursor=\'pointer\';" onClick="window.close();">');
	 okno.document.writeln('<img src="' + img + '" border="0" alt="Zamknij" title="Zamknij">');
	 okno.document.writeln('</td>');
	 okno.document.writeln('</tr>');
	 okno.document.writeln('</table>');
	 okno.document.writeln('</body>');
	 okno.document.writeln('</html>');
	 okno.document.close();
	 okno.focus();
 }

function galeria_preview(id_img)
{
	window.open("gal_preview.php?id_img=" + id_img,"galv","width=700,height=500");
}