function rozwin( id )
{
    t = document.getElementById( id );
    if ( t.style.display == "none" )
        t.style.display = "inline";
    else
        t.style.display = "none";
}
