// A Core Most Important JS functions 
// v 0.1.8 
// finded, maked and modified 
// by Artos (C) 2008 
// for Webprovider 

// SHOW / HIDE 0.1 
// ukrywa i pokazuje dowolny element po ID
// PRZYKLADOWE UZYCIE: 
/*<b onClick=ShowHide('menu_2') style="cursor: pointer;">Zwiń/Rozwiń</b><br>
<b id="menu_2" style="display:none; background: whitesmoke; width: 100px; z-index: 40; position: absolute;">
<A href="#">kolor1</A><br>
<A href="#">kolor2</A><br>
<A href="#">kolor3</A><br>
<A href="#">kolor4</A><br>
</b>*/


function ShowHide(id)
    {
        document.getElementById(id).style.display = (document.getElementById(id).style.display == "none") ? "block" : "none";
    }

function Hide(id) 
    {
        document.getElementById(id).style.display = "none";
    }

function Show(id) 
    {
        document.getElementById(id).style.display = "block";
    }
