﻿
// GET A RAD WINDOW
function GetRadWindow() {
    var oWindow = null;
    if (window.radWindow) oWindow = window.top.radWindow;
    else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;
    return oWindow;
}


/********************************/
/**** CONFIRM DELETE WINDOWS ****/
/********************************/
function ShowConfirmDelete(sender, args) {
    var callBackFunction = Function.createDelegate(sender, function(argument) {
        if (argument) {
            this.click();
        }
    });

    //call the confirmation dialog
    radconfirm("Are you sure you want to delete this?", callBackFunction, 250, 150, null, "Confirm Delete");
    args.set_cancel(true);
}
