/* auteur: Jean-Christophe LEININGER */
/* Date de création: 14/09/2003 */
var windowNote;

function showNote() {
  windowNote = window.open('','Note','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,' + 'width=500' + ',height=300');
  text = '<' + 'HTML' + '><' + 'HEAD' + '><' + 'TITLE' + '>' + "Aide pour la recherche" + '</' + 'TITLE' + '><' + '/HEAD' + '><' + 'BODY BACKGROUND=' + '""' + ' BGCOLOR=' + '"#FFDC97">';
  text +='<div style="text-align:justify;">';
  text +='<b><font color="#3a1d58"><u>';
  text += "Recherche de base :";
  text +='</u></font></b><BR>';
  text +='<font color="#3a1d58">';
  text += "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Taper simplement le ou les mots souhaités. Si vous entrez plusieurs mots, le moteur de recherche ajoute automatiquement un \'et\' entre chaque mot.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;L'emploi des majuscules n'influence pas la recherche. Les recherches ne prennent pas la casse en compte.";
  text +='</font><BR><br>';
  text +='<b><font color="#3a1d58"><u>';
  text += "Recherche avancée :";
  text +='</u></font></b><BR>';
  text +='<font color="#3a1d58">';
  text += "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Pour rechercher une <b>expression exacte,</b> tapez-la entre guillemets. Les mots compris à l'intérieur des guillemets (&quot;comme ceci&quot;) seront recherchés d\'un seul bloc.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Pour <b>exclure un mot de la recherche</b>, utilisez le signe moins &quot;-&quot;.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Pour <b>rechercher un mot ou un autre</b>, utilisez le signe étoile &quot;*&quot; qui sigifie ou.";
  text +='</font><BR>';
  text +='</div>';
  text += '</' + 'BODY' + '><' + '/HTML' + '>';
  windowNote.document.write(text);
  windowNote.focus();
  windowNote.document.close();
  return false;
}
