﻿var win;

function ShowModalWindow(c, u, w, h)
{
    win = new Window(
        Application.getNewId(),
        {
            className: "dialog",
            title: c,
            width: w, height: h, 
            resizable: false,
            minimizable: false,
            maximizable: false,
            recenterAuto: true,
            url: u,
            effectOptions: {duration:1}
        })

    win.setDestroyOnClose();
    win.showCenter(true);
}

function ShowAlertWindow(c, u, w, h)
{
    win = new Window(
        Application.getNewId(),
        {
            className: "nuncio",
            title: c,
            width: w, height: h, 
            resizable: false,
            minimizable: false,
            maximizable: false,
            recenterAuto: true,
            url: "Alert.aspx?alert=" + u,
            effectOptions: {duration:1}
        })

    win.setDestroyOnClose();
    win.showCenter(true);
}

function ShowAlertWindow2(c, u, w, h)
{
    win = new Window(
        Application.getNewId(),
        {
            className: "nuncio",
            title: c,
            width: w, height: h, 
            resizable: false,
            minimizable: false,
            maximizable: false,
            recenterAuto: true,
            url: "~Admin/Alert.aspx?alert=" + u,
            effectOptions: {duration:1}
        })

    win.setDestroyOnClose();
    win.showCenter(true);
}