// Java Document


var fenetreNote;

function afficheNote(titre, message_L1, message_L2, couleurFond, fond, couleurTexte, typePolice, tailleCaracteres) {
  fenetreNote = window.open('','Note','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,' + 'width=600' + ',height=400');
  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 += titre + '</CENTER></FONT>';
  texte += '<p align="left" class="BodyFontText">' + message_L1 + '<BR>'
  texte += message_L2 + '</p>'
  texte += '</' + 'BODY' + '><' + '/HTML' + '>';
  
  fenetreNote.document.write(texte);
  fenetreNote.focus();
  fenetreNote.document.close();
  return false;
}
//  Fin du script -->

function MyReload()
{
window.location.reload();
}
//-->