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