function aff_suite()
 {
     global $msg;
     global $charset;
     if ($this->affichage_suite) {
         return $this->affichage_suite;
     }
     $link = "<a href='http://www.placedeslibraires.fr/detaillivre.php?gencod=" . htmlentities(str_replace("-", "", $this->notice->code), ENT_QUOTES, $charset) . "'><i>" . $msg["notice_trouver_le_livre"] . "</i></a>";
     $ret = parent::aff_suite();
     $ret .= "<tr><td align='right' class='bg-grey'><b>" . $msg["notice_librairie"] . "</b></td><td>" . $link . "</td></tr>";
     $this->affichage_suite = $ret;
     return $ret;
 }