function op(ImageName, w, h, w_okno, h_okno)
{
var poziceX = (screen.width) ? (screen.width - w_okno)/2 : 0;
var poziceY = (screen.height) ? (screen.height - h_okno)/2 : 0;



res= "scrollbars=0, resizable=0, left="+poziceX+", top="+poziceY+", status=0";
si = window.open("", "open", "toolbar=0, "+res+", width="+w_okno+", height="+h_okno+"");
si.document.writeln('<html><head><title>Silestone / Quartz - '+ImageName+'</title></head><body style="font:normal 12px Arial; margin:0; background:white; cursor:pointer;" onClick="self.close()" >');
si.document.writeln('<img style="margin:0;" src="'+ImageName+'" width="'+w+'" height="'+h+'" border="0" alt="">');
si.document.writeln('<center>kliknutím na obrázek zavřete okno</center>');
si.document.writeln('</body></html>');
si.window.status="Fotografie se nahrává";
si.document.close();
si.focus();
}



