
function addComment() {
    $('#commentformpopup').slideDown(500);
}

function deleteComment(id, idc, page, view) {
    check = confirm('Möchtest Du den Eintrag wirklich löschen?');

    if (!check) {
        return;
    }

    $.get('./ajax/comments.php', {
        'action': 'delete',
        'id_comment': id,
        'id_commentable': idc,
        'page': page,
        'view': view
    },
    function(data) {
        $('#comments'+idc).html(data);
    });
}

function loadPage(idc, page, view) {
    $.get('./ajax/comments.php', {
        'id_commentable': idc,
        'page': page,
        'view': view
    },
    function(data) {
        $('#comments'+idc).html(data);
    });
}
