﻿var PostBackSender;
function ConfirmDelete(sender, message, title) {
    try {
        PostBackSender = sender.href;
    }
    catch (ex) {
        PostBackSender = null;
    }
    radconfirm(message, PostBack, 400, 250, this, title)
}
function PostBack(confirmed) {
    if (confirmed && PostBack != null)
        window.location.href = PostBackSender;
}
