var objectId = '';
function sortFiles(dir_id, object_id, order) {
  objectId = object_id;
  doAjaxRequest('CoMeT_function=run_module&module=MediaBankPub&function=frontend&action=sort_files&dir_id=' + dir_id + '&object_id=' + object_id + '&order=' + order, '#mb_files_' + objectId, sortFilesResponse);
}

function sortFilesResponse(html) {
  jQuery('#mb_files_' + objectId).html(html);
}
