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