function otevri(n,w,h)
{
var win=window.open('','fotka','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,titlebar=no,width='+w+',height='+h);
var wind=win.document;
wind.write('<html><body>');
wind.write('<div style="position: absolute; background: silver; margin: 0px; padding: 0px; top: 0px; left: 0px; width: '+w+'px; height: '+h+'px;">\n');
wind.write('<img src="alba/'+n+'" border="0" onClick="window.close();" onMouseDown="window.close();" style="margin: 0px; padding: 0px;">\n');
wind.write('</div>\n');
wind.write('</body></html>');
wind.close(); //uzavira tvoreni dokumentu, ne okno!
return false;
}