function ConfirmURL(msg, url) {
    if (confirm(msg)) {
        window.location.href = url;
    }
}
