﻿
function on(nazwa) {
    document.getElementById(nazwa).style.background = 'url(/images/GordoStudio/menuTopBg.gif) repeat-x top';
    document.getElementById(nazwa).style.color = '#45473e';
}
function off(nazwa) {
    document.getElementById(nazwa).style.background = '';
    document.getElementById(nazwa).style.color = '#ffffff';
}

function popUp(page) {
    window.open(page, "", "width=600 height=600,scrollbars=yes,menubar=no,resizable=yes");
}

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';
    }
}




 

