
// Provide a default path to dwr.engine
if (typeof this['dwr'] == 'undefined') this.dwr = {};
if (typeof dwr['engine'] == 'undefined') dwr.engine = {};

if (typeof this['Export'] == 'undefined') this.Export = {};

Export._path = '/BernsteinPortal/dwr';

Export.getLimit = function(callback) {
  dwr.engine._execute(Export._path, 'Export', 'getLimit', callback);
};

Export.exportBookmarks = function(p0, p1, p2, callback) {
  dwr.engine._execute(Export._path, 'Export', 'exportBookmarks', p0, p1, p2, callback);
};

Export.exportView = function(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, callback) {
  dwr.engine._execute(Export._path, 'Export', 'exportView', p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, callback);
};

Export.exportAll = function(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, callback) {
  dwr.engine._execute(Export._path, 'Export', 'exportAll', p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, callback);
};


