﻿function ShowHelpDialog(helpDivId) {
    helpDivId = '#' + helpDivId;
    $(helpDivId).dialog({
    bgiframe: true,
        autoOpen: false,
        modal: true,
        draggable: false,
        resizable: false,
        buttons: {
            "OK": function() {
                $(this).dialog('close');
            }
        }
    });
    $(helpDivId).dialog('open');
}

function InitHelpDialogs() {
    var buttons = $(".helpDialogButton");
    var divs = $(".helpDialogDiv");
    buttons.each(function(i) {
        $(this).bind("click", [i], function(e) {
            var index = parseInt(e.data[0]);
            ShowHelpDialog(divs[index].id);
            return false;
        });
    });
}


