﻿function showGenericDialog(dialogTtle, message) {
    $("#cms_GenericDialogContents").html(message);
    $("#cms_GenericDialog").dialog({
        modal: false,
        title: dialogTtle,
        buttons: {
            Close: function () {
                $(this).dialog('close');
            }
        }
    }).parent().appendTo($("form:first"));
}
function showCustomDialog(id, w, h, t, m) {
    $("#" + id).dialog({
        modal: m,
        title: t,
        overlay: {
            opacity: 0.5,
            background: 'black'
        },
        height: h,
        width: w,
        resizable: true
        }).parent().appendTo($("form:first"));
}

function closeDialog(selector) {
    $("." + selector).dialog('close');
}

