<!--
function popup(meno,x,y,z)
{
var okno=window.open('','okno','width='+x+',height='+y+',resizble=1,menubar=0,toolbar=0,left=10,top=10,directories=0,location=0,scroolbars=0,copyhistory=0,status=1');
okno.focus();
okno.document.open();
okno.document.writeln('<html><head><title>Fotka - '+z+'</title></head><body topmargin="0" leftmargin="0">');
okno.document.writeln('<img src="'+meno+'" alt="'+z+'" title="'+z+'" onClick="window.close()">');
okno.document.writeln('</body></html>');
okno.document.close();
}
-->
