function foto(cesta,sirka,vyska,popisek) {
    
    var pozice_x = (window.screen.width - sirka) / 2;
    var pozice_y = (window.screen.height - vyska) / 2;
    
    var datum = new Date();
    var jmeno_okna = datum.getTime();
    
    var okno = window.open("",jmeno_okna,"toolbar=no,location=no,width="+sirka+",height="+vyska+",directories=no,status=no,menubar=no"+
      ",resizable=no,scrollbars=no,left="+pozice_x+",top="+pozice_y);

    
    okno.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">');
    okno.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">');
    okno.document.writeln("<head><title>"+popisek+"</title>");
        okno.document.writeln('<meta http-equiv="pragma" content="no-cache" />');
        okno.document.writeln('<meta http-equiv="content-language" content="cs" />');
        okno.document.writeln('<meta http-equiv="content-type" content="text/html; charset=utf-8" />');
    okno.document.writeln("</head>");
    
    okno.document.writeln('<body style="margin:0;padding:0;">');
    
    okno.window.document.writeln('<img src="'+cesta+'" onclick="window.close();" style="border:none;" width="'+sirka+'" height="'+vyska+'" alt="'+popisek+'" title="Kliknutím na obrázek okno zavřete"');
    
    okno.document.write("</body></html>");
    okno.document.close();    
}
