<!-- debut du script
var fenetreNote;

function afficheNote(titre, 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' + '>' + titre + '</' + 'title' + '><' + '/head' + '><' + 'body background=' + '"' + fond + '"' + ' bgcolor=' + '"' + couleurFond + '">';
  texte += '<center>';
  texte +='<font face="' + typePolice +'"';
  texte += ' size=' + tailleCaracteres; 
  texte += ' color=' + '"' + couleurTexte +'">';
  texte += message + '</center></font>';
  texte += '</' + 'body' + '><' + '/html' + '>';
  fenetreNote.document.write(texte);
  fenetreNote.focus();
  fenetreNote.document.close();
  return false;
}
//  Fin du script -->
