﻿
function deleteEntity(url) {
    var alert = confirm("Are you sure you want to delete?");
    if (alert) {
        window.location = url;
    }
}

