var fenetreNote=null;

function afficheNote(message, couleurFond, fond, couleurTexte, typePolice, tailleCaracteres) {

fenetre = window.open('','Note','toolbar=no,location=no,
directories=no,status=no,scrollbars=no, resizable=yes,copyhistory=no,' + 'width=250' + ',height=130');

fenetreNote = fenetre;

 

if (fenetreNote != null) {

doc = fenetre.document;

texte = '<' + 'HTML' + '><' + 'HEAD' + '><' + 'TITLE' + '>' + message +
'</' + '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' + '>';

doc.write(texte);

doc.close();

}

}

function fermerNote() {

if (fenetreNote != null) {

fenetreNote.close( );

fenetreNote = null;

}

}