GlobalTouch.prototype.up = function (x, y) {
  type('x', x, 'Number');
  type('y', y, 'Number');
  return this._requestJSON('POST', '/up', { x: x, y: y });
};