function JSL(url, jmeno, w, h)
{
  okno = window.open("", jmeno, 'resizable=0,top=50,left=50,menubar=0,width=' + w + ',height=' + h);
  okno.document.write("<html><body style='margin:0px;padding:0px;' ><img src='"+url+"' onclick='window.close();' style='cursor: hand'></body></html>");
}

