better variable/attribute names; fix remove_cube, it should not alter the .fs_schema attribute (former .new_schema)
CubicWeb.require('ajax.js');
function removeBookmark(beid) {
d = async_remote_exec('delete_bookmark', beid);
d.addCallback(function(boxcontent) {
reloadComponent('bookmarks_box', '', 'boxes', 'bookmarks_box');
document.location.hash = '#header';
updateMessage(_("bookmark has been removed"));
});
}