// JavaScript Document

//funkce pro otevírání fixního nového okna
function openJSLWindow() { 
    iMyWidth = (window.screen.width/2) - (12 + 12)
    iMyHeight = (window.screen.height/2) - (12 + 25)
  Fokus = window.open("", "JSL","height=500,width=990,resizable=no,center=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");
  Fokus.focus()
}
