var okno = null;

function show_photo(name, width, height, title)
{
	 if (okno !== null)
	 {
		 if (!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=utf-8">');
	okno.document.writeln('<title>'+ title +' - Podglad</title>');
	okno.document.writeln('<script language="JavaScript" type="text/javascript">');
	okno.document.writeln('function fix ()');
	okno.document.writeln('{');
	okno.document.writeln('	var w = h = 1000;');
	okno.document.writeln(' if(navigator.appName != "Microsoft Internet Explorer"){');
	okno.document.writeln('	if (document.getElementById("gallery"))');
	okno.document.writeln('	{');
	okno.document.writeln('		w = document.getElementById("gallery").offsetWidth+7;');
	okno.document.writeln('		h = document.getElementById("gallery").offsetHeight+50;');
	okno.document.writeln('	}');
	okno.document.writeln('	else');
	okno.document.writeln('	{');
	okno.document.writeln('		w = document.all.gallery.offsetWidth;');
	okno.document.writeln('		h = document.all.gallery.offsetHeight+40;');
	okno.document.writeln('	}');
	okno.document.writeln('	window.resizeTo(w,h);}');
	okno.document.writeln('}');
	okno.document.writeln('</script>');
	okno.document.writeln('</head>');
	okno.document.writeln('<body style="margin: 0px;" onload="fix();window.focus();">');
	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();" valign="top">');
	okno.document.writeln('<img id="gallery" src="http://9595.pl/photos/' + name + '" 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();
}