<!--
//script

function FuncRecTitre(sTitre,sSelect){

   if (sTitre != ''){
      if (sSelect == 'Livre'){
         window.location.href = './Rec_Livre.asp?qs_Titre=' + sTitre + '&qs_genre=99'
      }
      else
      if (sSelect == 'TexteC'){
         window.location.href = './Rec_TexteC.asp?qs_titretexte=' + sTitre + '&qs_typetexte=99'
      }
   }
   else{
        // TO DO : afficher un message avec l'aide
        alert("Vous pouvez faire une recherche sur un titre entier ou une partie du titre\nVous pouvez chercher un livre ou une revue ( Documents )\nou bien une nouvelle, un article,... ( Textes )\n(ne pas oublier les accents)");
   }
}

-->

