function ZobrazFoto(Zdroj,Nadpis){
    var Foto = new Image();
    Foto.src = Zdroj;
    var Parametr = new String();
    Parametr = "height=300,width=300,directories=no";
    Parametr += ",location=no,resizable=yes,toolbar=no,scrollbars=yes,top=no,left=no";
    var OknoFoto = window.open("","Fotografie",Parametr);
    OknoFoto.document.open("text/html","replace");
    OknoFoto.document.write("<!doctype html public \"-//w3c//dtd html 4.0 transitional//en\">\n");
    OknoFoto.document.write("<html>\n<head>\n<title>" + Nadpis + "</title>\n");
    OknoFoto.document.write("</head>\n");
    OknoFoto.document.write("<body rightmargin=\"0\" leftmargin=\"0\" topmargin=\"0\" bottommargin=\"0\" marginwidth=\"0\" marginheight=\"0\" onload=\"window.resizeTo(foto.width+30,foto.height+53);\">\n");
    OknoFoto.document.write("<p>\n");
    OknoFoto.document.write("<a href=\"javascript: window.close();\">\n");
    OknoFoto.document.write("<img border=\"0\" name=\"foto\" src=\"" + Zdroj + "\" alt=\"Zavøít okno\">");
    OknoFoto.document.write("</a></p>\n");
    OknoFoto.document.write("</body>\n</html>\n");
    OknoFoto.document.close();
}

function openwindow(url, jmeno, w, h) 
{
    Fokus = window.open(url, jmeno,'resizable=0,top=0,left=0,menubar=0,width=' + w + ',height=' + h);
    Fokus.focus()
}

function openwindowa(url, jmeno, w, h) 
{
    Fokus = window.open(url, jmeno,'scrollbars=1,resizable=0,top=0,left=0,menubar=0,width=' + w + ',height=' + h);
    Fokus.focus()
}
