// client.js

function clientRecord(name, address) {
  this.name = name;
  this.address = address;
  return this;
}

function makeList() {
  list = new Array(
    new clientRecord('Select Client Area','access.html'),
    new clientRecord('AABCA','cl/aabca/index_shdx.html'),
    new clientRecord('Accurate Legal Bookkeeping',''),
    new clientRecord('African Royals','cl/afroyals/index_shdx.html'),
    new clientRecord('Art\'s Bliss','cl/artsbliss/index_shdx.html'),
    new clientRecord('BahaiJax','cl/bahaijax/v1/index.html'),
    new clientRecord('BarbedWear',''),
    new clientRecord('Bead Lady of Jax','cl/beadlady/index_shdx.html'),
    new clientRecord('Citizens for a Scenic Florida','cl/florida/index_shdx.html'),
    new clientRecord('Citizens for Tree Preservation','cl/tree/index_shdx.html'),
    new clientRecord('Glo Mama!','cl/glomama/index_shdx.html'),
    new clientRecord('Gorgon House',''),
    new clientRecord('ISJ',''),
    new clientRecord('Jackie Brown',''),
    new clientRecord('Jacksonville Youth Works','cl/jyw/v1/index.html'),
    new clientRecord('LTW',''),
    new clientRecord('Morgue Bunny',''),
    new clientRecord('Movement Economic Justice','cl/mfej/index_shdx.html'),
    new clientRecord('OmnEmail',''),
    new clientRecord('Primo! Pizza & Pasta',''),
    new clientRecord('Scenic America',''),
    new clientRecord('Scenic Beauty','cl/beauty/index_shdx.html'),
    new clientRecord('Scenic California',''),
    new clientRecord('Scenic Georgia',''),
    new clientRecord('Scenic Jacksonville',''),
    new clientRecord('Scenic Maryland',''),
    new clientRecord('Scenic Michigan',''),
    new clientRecord('Scenic Virginia',''),
    new clientRecord('WSJ','')
  );

  var s = document.getElementById("selectLnk");

  s.options.length = 0;
  for (i in list) {
    s.options[s.options.length] = new Option(list[i].name, list[i].address);
  }
}

