// Wheelchair Class for use with Abbey Mobility web site

function Chair()
{
  this.spec = new Array(11);
  this.description;
  this.pictureURL;
}


function setInfo (chDepth, chWidth, chHeight, chSeatHeight, chSeatDepth, chSeatWidth, chSeatfootrest, chWeight, chCapacity, chName, chModel, chPicURL)
{
  this.spec[0] = chDepth + "&nbsp;";
  this.spec[1] = chWidth + "&nbsp;";
  this.spec[2] = chHeight + "&nbsp;";
  this.spec[3] = chSeatHeight + "&nbsp;";
  this.spec[4] = chSeatDepth + "&nbsp;";
  this.spec[5] = chSeatWidth + "&nbsp;";
  this.spec[6] = chSeatfootrest + "&nbsp;";
  this.spec[7] = chWeight + "&nbsp;";
  this.spec[8] = chCapacity +"&nbsp;";
  this.spec[9] = "&nbsp;" + chName;
  this.spec[10] = chModel + "&nbsp;";

  this.pictureURL = chPicURL;
}

Chair.prototype.setInfo = setInfo;

// End of Chair Class

