﻿/* JQuery Add Action Modal Form */
function modalForm(p_title, div, width, height) {
    p_title = p_title || "";
    $("#" + div).dialog({ autoOpen: false,
        height: height,
        width: width,
        title: p_title,
        resizable: false,
        modal: true,
        open: function(event, ui) { $(".ui-dialog-titlebar-close").show(); },
        overlay: { backgroundColor: "#000", opacity: 0.5 }
    });
}