/// <reference path="jquery-1.3.2-vsdoc.js" />

function closeReqsDialog() {
    $('#dialog-modal').dialog('close');
}	

var Support = {
    init: function () {

    },
    showReleaseNotes: function (id) {
        $("#"+id).dialog("destroy");
        $("#"+id).dialog({
            height: 400,
            width: 500,
            modal: true
        });
    }
};

$(document).ready(function () {
	Support.init();
	$("#closeGsfReqs").click(function () { closeReqsDialog(); });
});
