// Walker Class for use with Abbey Mobility web site

function Walker()
{
  this.spec = new Array(5);
  this.description;
  this.pictureURL;
}


function setInfo (lowHeight, highHeight, width, weight, name, wkPicURL)
{
  this.spec[0] = "&nbsp;" + lowHeight;
  this.spec[1] = "&nbsp;" + highHeight;
  this.spec[2] = "&nbsp;" + width;
  this.spec[3] = "&nbsp;" + weight;
  this.spec[4] = "&nbsp;" + name;
  

  this.pictureURL = wkPicURL;
}

Walker.prototype.setInfo = setInfo;

// End of Scooter Class

