/* auteur: Elassar Multimédia */ /* Date de création: 14/02/2002 */ <!-- 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 +='<FONT FACE="' + typePolice +'"';
  texte += ' SIZE=' + tailleCaracteres; 
  texte += ' COLOR=' + '"' + couleurTexte +'">'; texte += message + '</CENTER></FONT>'; texte += '<' + '/HTML' + '>'; fenetreNote.document.write(texte); fenetreNote.focus(); fenetreNote.document.close(); return false; } // Fin du script -->
