// Rollator Class for use with Abbey Mobility web site

function Rollator()
{
  this.spec = new Array(8);
  this.description;
  this.pictureURL;
}


function setInfo (handleHeight, trayHeight, length, width, frontWidth, backWidth, weight, name, rlPicURL)
{
  this.spec[0] = handleHeight + "&nbsp;";
  this.spec[1] = trayHeight + "&nbsp;";
  this.spec[2] = length + "&nbsp;";
  this.spec[3] = width + "&nbsp;";
  this.spec[4] = frontWidth + "&nbsp;";
  this.spec[5] = backWidth + "&nbsp;";
  this.spec[6] = weight + "&nbsp;";
  this.spec[7] = "&nbsp;" + name;

  this.pictureURL = rlPicURL;
}

Rollator.prototype.setInfo = setInfo;

// End of Scooter Class
