////////////////////////////////////////////////////////////////////
// Country class
Country.CLASS_NAME = 'Country';

// Static vars/objs
Country.htObj = new Hashtable();

// XML constructor
function Country(id, name, regionId, numConids) {
  this.id = id;
  this.name = name;
  this.regionId = regionId;
  this.numConids = numConids;

  Country.htObj.put(this.id, this);
  Region.addCountry(this.regionId, this.id);
}

