
var okno;
function JSL(url, jmeno, w, h)
{
    okno = window.open("", jmeno, 'resizable=1,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>");
    okno.document.write("<SCRIPT language=JavaScript>window.resizeTo("+w+", "+h+")</script>");    
    okno.document.close();    
    okno.focus();	
}

