");
$('#dialog').dialog({
modal: true,
show: 'fade',
hide: 'fade',
resizable: false,
buttons: {
'Add': function() {
folder_name = $(this).find('#folder_name').val();
addFolder('', folder_name, folder_parent);
},
Cancel: function() {
$(this).dialog('destroy');
}
}
});
});
});
-->