function loadComments(n_id, offset) {
    $('#addload').html('<center><img src="./pics/loader.gif" /></center>');
    $.get ('news_read.php', {id: n_id, gco: offset},
        function(response) {
            for (i=0, c=response.items.length; i<c; i++) {
                theComment = document.createElement('LI');
                theComment.innerHTML = response.items[i];
                $('#comments').get(0).appendChild(theComment);
            }
            if (response.removenext) {
                $('#addload').css('display', 'none');
            } else {
                $('#addload').html(response.next);
            }
        },
    'json');
}
