////////////////////////////////////////////////////////////////////
// UMSDepartment class
SymSearchCountry.CLASS_NAME = 'SymSearchCountry';

SymSearchCountry.DEFAULT_MENU_WIDTH = "600px";
SymSearchCountry.DEFAULT_MENU_HEIGHT = "300px";

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

// XML constructor
function SymSearchCountry(xml) {
//  this.id = $attr(xml, 'id');
  this.id = "countrySelDiv";
  this.countryDesc = "country desc";

  SymSearchCountry.htObj.put(this.id, this);
}

// Get Action Menu div content
SymSearchCountry.prototype.getActionMenuDivContent = function() {
  var text = "";
  text += Continent.getSelectText();
/*
  for (var ci in Country.htContinent.hash) {
    text += ci.getRowText();
  }
*/
  
  return text;
}

// Implement to string method
SymSearchCountry.prototype.toString = function() {
  return "SymSearchCountry.class, ID: " + this.id + ", Desc: " + this.countryDesc;
}

var c = new SymSearchCountry();

