function __get($name)
 {
     switch ($name) {
         case 'outertext':
             return $this->root->innertext();
         case 'innertext':
             return $this->root->innertext();
         case 'plaintext':
             return $this->root->text();
         case 'charset':
             return $this->_charset;
         case 'target_charset':
             return $this->_target_charset;
     }
     return null;
 }