var hall = {

    UpdateAreaDown: function(ligaRand, statyRand, statyRodzaj)
    {
        new Request({
            url: '/mlb2010/ajax/mainHallOfFame.php?od=5&ligaRand='+ligaRand+'&statyRand='+statyRand+'&statyRodzaj='+statyRodzaj,
            method: 'get',
            update: 'refresh-me',
            onComplete: function(response) {
                $('halloffame').set('html',response);
            }
        }).send();
    },

    UpdateAreaUp: function(ligaRand, statyRand, statyRodzaj)
    {
        new Request({
            url: '/mlb2010/ajax/mainHallOfFame.php?od=0&ligaRand='+ligaRand+'&statyRand='+statyRand+'&statyRodzaj='+statyRodzaj,
            method: 'get',
            update: 'refresh-me',
            onComplete: function(response) {
                $('halloffame').set('html',response);
            }
        }).send();
    }   

}
