<!--

function okno(jmeno,x,y)
{
var okno=window.open('','okno','width='+x+',height='+y+',resizble=0,menubar=0,toolbar=0,left=10,top=10,directories=0,location=0,scrollbars=yes,copyhistory=0');
okno.document.open();
okno.document.writeln('<html><head><title>Obrázková galerie</title><style type=\"text/css\">body{padding: 0;margin: 0;}</style></head><body onclick=\"window.close();\">');
okno.document.writeln('<img src="'+jmeno+'"/>');
okno.document.writeln('</body></html>');
okno.document.close();
}

-->

