function GroupItem($aItemtype)
 {
     parent::MapItem();
     global $gl_standardtag;
     $this->itemtype = $aItemtype;
     $this->tagname = $gl_standardtag;
     $this->itemid = -1;
     $this->parentid = -1;
     $this->usrid = -1;
     $this->itemname = "new item";
     $this->tags = null;
     $this->children = array();
     $this->id = "";
     $this->isvirtual = false;
     $this->user = null;
 }