

function _geb(id)
{
    return document.getElementById(id);
}


function wynik(arg1)
{
    advAJAX.post
    ({
        url: 'wynik.php?nr=' + arg1,
        onSuccess : function(obj) { pokaz_wynik(obj.responseText); },
        mimeType: 'text/plain'
    });
}


function pokaz_wynik(tresc)
{
    _geb('wynik').innerHTML = tresc;
}




