﻿$(function () {

    $("#dialog-user").dialog({
        resizable: false,
        height: 180,
        modal: true,
        autoOpen: false,
        buttons: {
            "Yes": function () {
                $(this).dialog("close");
                window.location.replace("/UserEdit.aspx");
            },
            Cancel: function () {
                $(this).dialog("close");
            }
        }
    });
});

