﻿/* Alert OK */
function alertOK(p_title, p_message) {
    p_title = p_title || "";
    $("<div>" + p_message + "</div>").dialog({
        title: p_title,
        resizable: false,
        modal: true,
        overlay: { backgroundColor: "#000", opacity: 0.5 },
        buttons: { "OK": function () { $(this).dialog("close"); } },
        close: function (ev, ui) { $(this).remove(); }
    });
}