function approveDelete(url, message) {
    if (confirm(message)) {
        window.location = url;
    }
}
