/*pop-up window*/
function openJSLWindow() {
    iMyWidth = (window.screen.width / 2) - (250 + 14); iMyHeight = (window.screen.height / 2) - (200 + 50);
    Okno = window.open("", "JSL", "width=400, height=250, left=" + iMyWidth + ", top=" + iMyHeight + ", screenX=" + iMyWidth + ", screenY=" + iMyHeight + ", resizable=no, scrollbars=no, statusbar=no, menubar=no, titlebar=0");
    Okno.focus();
}

function openJSLBIGWindow() {
    iMyWidth = (window.screen.width / 2) - (250 + 14); iMyHeight = (window.screen.height / 2) - (200 + 50);
    Okno = window.open("", "JSLBIG", "width=700, height=550, left=" + iMyWidth + ", top=" + iMyHeight + ", screenX=" + iMyWidth + ", screenY=" + iMyHeight + ", resizable=no, scrollbars=yes, statusbar=no, menubar=no, titlebar=0");
    Okno.focus();
}
