/**
  * Get node label
  *
  * @access public
  * @param Varien_Object $node
  * @return string
  * @author Ultimate Module Creator
  */
 public function buildNodeName($node)
 {
     $result = parent::buildNodeName($node);
     $result .= '<a target="_blank" href="' . $this->getUrl('adminhtml/cmsextended_cmspage/index', array('id' => $node->getId(), 'clear' => 1)) . '"><em>' . $this->__(' - Edit') . '</em></a>';
     return $result;
 }