var fenetreNote;
function afficheNote(message, couleurFond, fond, couleurTexte, typePolice, tailleCaracteres) {
  fenetreNote = window.open('','Note','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,' + 'width=400' + ',height=100');
  texte = '<' + 'HTML' + '><' + 'HEAD' + '><' + 'TITLE' + '>' + 'Critical Dissertation, Notes' + '</' + 'TITLE' + '><' + '/HEAD' + '><' + 'BODY BACKGROUND=' + '"' + fond + '"' + ' BGCOLOR=' + '"' + couleurFond + '">';
  texte += '<LEFT>';
  texte +='<FONT FACE="' + typePolice +'"';
  texte += ' SIZE=' + tailleCaracteres; 
  texte += ' COLOR=' + '"' + couleurTexte +'">';
  texte += message + '</LEFT>';
  texte += '</' + 'BODY' + '><' + '/HTML' + '>';
  fenetreNote.document.write(texte);
  fenetreNote.focus();
  fenetreNote.document.close();
  return false;
}
