function noveokno(meno,x,y)
{
var okno=window.open('','okno','width='+x+',height='+y+',resizable=0,menubar=0,toolbar=0,left=10,top=10,directories=0,location=0,scrollbars=0,copyhistory=0,status=1');
okno.document.open();
okno.document.writeln('<html><head><title>Fotogalerie</title></head><body topmargin=0 leftmargin=0><img src='+meno+' onMouseUp=window.close()></body></html>');
okno.document.close();
}

