function getTitleObject()
 {
     if (is_object($this->title_obj)) {
         return $this->title_obj;
     } else {
         $utlf = new UserTitleListFactory();
         $utlf->getById($this->getTitle());
         if ($utlf->getRecordCount() == 1) {
             $this->title_obj = $utlf->getCurrent();
             return $this->title_obj;
         }
         return FALSE;
     }
 }