﻿function onMenu(nazwa) {
    document.getElementById(nazwa).style.padding = '0px 0px 0px 0px';
    document.getElementById(nazwa).style.height = '37px';
    document.getElementById(nazwa).style.background = '#70a003';
}
function offMenu(nazwa) {
    document.getElementById(nazwa).style.padding = '8px 0px 0px 0px';
    document.getElementById(nazwa).style.height = '29px';
    document.getElementById(nazwa).style.background = '';
}

function onTopMenu(nazwa) {

    document.getElementById(nazwa).style.padding = '4px 0px 0px 0px';
    document.getElementById(nazwa).style.height = '29px';
    document.getElementById(nazwa).style.background = '#9b9e9a';
}
function offTopMenu(nazwa) {

    document.getElementById(nazwa).style.padding = '0px 0px 0px 0px';

}

function onLeftMenu(nazwa) {
    document.getElementById(nazwa).style.background = '#8dba25';
}
function offLeftMenu(nazwa) {
    document.getElementById(nazwa).style.background = 'Transparent';
}

function popUp(page) {
    window.open(page, "", "width=800 height=500,scrollbars=yes,menubar=no,resizable=yes");
}