/**
 * Usuwa raport
 * 
 * @param {Object} id   identyfikator reportu
 */
function deleteReport(id) {
    $("#loader").ajaxStart(function() {
        $(this).show();
    });
    $("#loader").ajaxStop(function() {
        $(this).hide();
    });

    $.get("ajax/modules/unreported_index/deleteRaport.php", {id : id}, 
        function (data) {
            if (data == "error") {
                $("#report_" + id).css("background-image", "url(images/1px_transparent_red15.png)");
            }
            else if(data == "ok") {
                $("#report_" + id).hide("slow");
            }
        }
    );
}

