function PopUpWin(win_name,url,sirka,vyska) {
   window.open (url,win_name,"toolbar=no, location=no, directories=no, status=no, menubar=no,scrollbars=no, resizable=no, copyhistory=no, top=250, left=200, width="+sirka+", height="+vyska); 
}

		function JSL2(url, jmeno, w, h,bScroll){
    	okno = window.open(url, jmeno, 'resizable=0,top=50,left=50,menubar=0,width=' + w + ',height=' + h + ',scrollbars=' + bScroll);
			okno.focus();
		}
		
		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>");
		}