// Scooter Class for use with Abbey Mobility web site

function Scooter()
{
  this.spec = new Array(10);
  this.description;
  this.pictureURL;
}


function setInfo (scCapacity, scLength, scWidth, scHeight, scWeight, scBattery, scRange, scSpeed, scName, scModel, scPicURL)
{
  this.spec[0] = scCapacity + "&nbsp;";
  this.spec[1] = scLength + "&nbsp;";
  this.spec[2] = scWidth + "&nbsp;";
  this.spec[3] = scHeight + "&nbsp;";
  this.spec[4] = scWeight + "&nbsp;";
  this.spec[5] = scBattery + "&nbsp;";
  this.spec[6] = scRange + "&nbsp;";
  this.spec[7] = scSpeed + "&nbsp;";
  this.spec[8] = "&nbsp;" + scName;
  this.spec[9] = scModel + "&nbsp;";

  this.pictureURL = scPicURL;
}

Scooter.prototype.setInfo = setInfo;

// End of Scooter Class
