﻿
// JScript File
function s(obj_name) {
    obj = document.getElementById(obj_name);
    if (obj != undefined) {
        //alert(obj.style.display);
        if (obj.style.display == 'block')
            obj.style.display = 'none';
        else
            obj.style.display = 'block';
    }
}

function Pokaz(nazwa) {
    document.getElementById(nazwa).style.visibility = 'visible';
}
function Ukryj(nazwa) {
    document.getElementById(nazwa).style.visibility = 'hidden';
}


function on(nazwa) {
    document.getElementById(nazwa).style.background = '#b1b1b1';
}
function off(nazwa) {
    document.getElementById(nazwa).style.background = '';
}


function popUp(page) {
    window.open(page, "", "width=800 height=500,scrollbars=yes,menubar=no,resizable=yes");
}

function newPopUp(page) {
    window.open(page, "", ",width=900 scrollbars=no,menubar=no,resizable=no");
}
