﻿


$(function () {

    // Dialog			
    $('#dialog').dialog({
        autoOpen: false,
        width: 600,
        minHeight: 400,
        modal: true
    });


    // Dialog Link
    $('#dialog_link').click(function () {
        $('#dialog').dialog('open', "height", 400);
        return false;
    });

});

