public function getUrl($mixedId)
 {
     $oPageQuery = new BxDolPageQuery(array());
     $sContent = $oPageQuery->getPageBlockContent($mixedId);
     if (!$sContent) {
         return false;
     }
     list($sUrl) = explode('#', $sContent);
     if (!$sUrl) {
         return false;
     }
     return $sUrl;
 }