function dbRecord(name, localURL, remoteURL, helpURL, subStat)
{
  this.name = name;
  this.localURL = localURL;
  this.remoteURL = remoteURL;
  this.helpURL = helpURL;
  this.subStat = subStat;
}

function dbCatRecord(name, key)
{
  this.name = name;
  this.key = key;
}

