/* Confirm Event Deletion -------------------------------------*/
function DeleteEvent (evtid, url) {
    var msg = 'Are you sure you want to delete this event?';
    if (window.confirm(msg)) {
        document.location.href = url;
    }
}
function DeleteDocument (url) {
    var msg = 'Are you sure you want to delete this event document?';
    if (window.confirm(msg)) {
        document.location.href = url;
    }
}
function DeletePub (url) {
    var msg = 'Are you sure you want to delete this publication?';
    if (window.confirm(msg)) {
        document.location.href = url;
    }
}
function DeletePerson (url) {
    var msg = 'Are you sure you want to delete this person?';
    if (window.confirm(msg)) {
        document.location.href = url;
    }
}

