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

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

CounterService._path = '/dwr';

CounterService.count = function(p0, callback) {
  dwr.engine._execute(CounterService._path, 'CounterService', 'count', p0, callback);
};



