﻿function okno(obr, $width, $height) 
{
    $left = screen.width / 2 - $width / 2;
    $top = screen.height / 2 - $height / 2;
    okno1 = window.open("", "", "width=" + $width + ", height=" + $height + ", left=" + $left + ", top=" + $top + ", menubar=no, toolbar=no, directories=no, status=no, resizable=yes, copyhistory=no");
    okno1.document.write("<html><head><title>MŠ Čtyřlístek - náhled fotografie</title></head>");
    okno1.document.write("<body style='margin: 0px'>");
    okno1.document.write("<center><a href='' onclick='window.close();'><img src='" + obr + "' valign=center border=0></a></center>");
    okno1.document.write("</body></html>");
}

