﻿function iQuanda_showExpertProfile(data) {
    var expertDesc = "Expert";
    if (iQuanda_ExpertDescriptorSingular != null) {
        expertDesc = iQuanda_ExpertDescriptorSingular;
    }

    iQuanda_generalDialog(expertDesc + ' Profile', data);
}

function iQuanda_generalDialog(title, message) {
    var $dialog = $('<div></div>')
                .html(message)
			    .dialog({
			        modal: true,
			        autoOpen: false,
                    width: 500,
			        title: title
			    });

    $dialog.dialog('open');
}

function iQuanda_openDialog(control) {
    $('#' + control).dialog('open');
}
