function deleteForum() {
    bootbox.confirm("Are You sure You want to delete this forum and all board, threads and posts which belongs to it?", function(r) {
        if (r) {
            sendRequest({id: $("#forum_id").val()}, "forums", "deleteForum", function(res) {
                location.href = convertUrl({"module": "forums"});