// returns the id of the currently active node
 public int CurrentID(XmlNode CurrentContext)
 {
     if (CurrentContext == null)
     {
         return(0);
     }
     return(XmlCommon.XmlFieldUSInt(CurrentContext, m_IDColumnName));
 }