function _geb(id)
{
    return document.getElementById(id);
}

function pytanie_on(id)
{
    _geb('pytanie_' + id).style.display = 'block';
}

function pytanie_off(id)
{
    _geb('pytanie_' + id).style.display = 'none';
}

