﻿
function ShowOttAlert(_strMessage) {
    strTitle = GetLanguageElement("strAlertWindowTitle");
    strCloseText = GetLanguageElement("strAlertWindowCloseText");
    $("#dialog").html(
        '<p><span class="ui-icon ui-icon-alert" style="float: left; margin-right: .3em;"></span>' +      
        '<strong>' + _strMessage + '</p>'
    );

    $("#dialog").dialog
    (
        {
            modal: true,
            title: strTitle,
            draggable: false,
            closeText: strCloseText,
            width: 500,
            buttons:
            {
                "OK":
                function () {
                    $(this).dialog("close");
                }
            }
        }
        );
}
