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

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

MixedAjax._path = '/dwr';

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

MixedAjax.addTag = function(p0, p1, callback) {
  dwr.engine._execute(MixedAjax._path, 'MixedAjax', 'addTag', p0, p1, callback);
};

MixedAjax.deleteTag = function(p0, p1, callback) {
  dwr.engine._execute(MixedAjax._path, 'MixedAjax', 'deleteTag', p0, p1, callback);
};

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


