
	function newwin(img,xwidth,yheight){ 
var a = window.open("","new","left='0',top='0',width="+xwidth+",height="+yheight);
a.document.writeln('<html>');
a.document.writeln('<head><title>Fotogalerie</title></head>');
a.document.writeln('<body style="margin:0;padding:0;">');
a.document.writeln('<a href="#" onclick="window.close();"><img src="'+img+'" border="0" width="'+xwidth+'" height="'+yheight+'" alt="klikni pro zavøení okna"></a>');
a.document.writeln('</body>');
a.document.writeln('</html>');
a.document.close();
}
