/* 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' + '>' + "Help for the research" + '</' + 'TITLE' + '><' + '/HEAD' + '><' + 'BODY BACKGROUND=' + '""' + ' BGCOLOR=' + '"#FFDC97">';
  text +='<div style="text-align:justify;">';
  text +='<b><font color="#3a1d58"><u>';
  text += "Basic research :";
  text +='</u></font></b><BR>';
  text +='<font color="#3a1d58">';
  text += "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Simply enter one or more words. If you enter more than one word, the search engine will add an \'and\' between each word.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The use of capital letter doesn not have an influence on the results.";
  text +='</font><BR><br>';
  text +='<b><font color="#3a1d58"><u>';
  text += "Advanced research :";
  text +='</u></font></b><BR>';
  text +='<font color="#3a1d58">';
  text += "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;To search a <b>particular expression,</b> enter it between quotation marks. the words inside the quotation marks (&quot;like this&quot;) will be search as one block.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>To exclude a word from the reasearch</b>, use the minus sign : &quot;-&quot;.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>To search a word or an other</b>, use the star sign : &quot;*&quot; which means or.";
  text +='</font><BR>';
  text +='</div>';
  text += '</' + 'BODY' + '><' + '/HTML' + '>';
  windowNote.document.write(text);
  windowNote.focus();
  windowNote.document.close();
  return false;
}
