GlobalTouch.prototype.scroll = function (xOffset, yOffset) {
  type('xOffset', xOffset, 'Number');
  type('yOffset', yOffset, 'Number');
  return this._requestJSON('POST', '/scroll', { xoffset: xOffset, yoffset: yOffset });
};