public boolean equals(Object o)
{
  Map no = (Map) o;
  Set myks = this.keySet();
  Set noks = no.keySet();
  return (myks.equals(noks));
}
