<!--

tTITRE = new Array(20);
uURL = new Array(20);
cCOMMENTAIRE = new Array(20);
var CHEMIN = "";
var COMPTEUR = 0;

function INITIALISE(NIVEAU){
 COMPTEUR = 0;
 if (NIVEAU == 0) CHEMIN = "images/";
 if (NIVEAU == 1) CHEMIN = "../images/";
 if (NIVEAU == 2) CHEMIN = "../../images/";
 if (NIVEAU == 3) CHEMIN = "../../../images/";
}

function MENU(TITRE,URL,COMMENTAIRE){
 COMPTEUR = COMPTEUR + 1;
 tTITRE[COMPTEUR] = TITRE;
 uURL[COMPTEUR] = URL;
 cCOMMENTAIRE[COMPTEUR] = COMMENTAIRE;
}

function VOIRMENU(){
 document.writeln('<div align="center"><table border="0" cellpadding="0" cellspacing="3">');
 for (i=1; i<COMPTEUR+1; i++){ 
  document.writeln('<tr><td width="100%" align="left" bgcolor="#8BDAC2">');
//  document.writeln('<img border="0" src="' + CHEMIN + 'puceverte.gif" vspace="2">');
  document.writeln('<img border="0" src="' + CHEMIN + 'puceverte.gif" align="left" vspace="2">');
  document.writeln('<font face="Arial" size="2"><b>');
  if (uURL[i] != ""){
   document.writeln('<a href="' + uURL[i] + '">');
  }
  document.writeln(tTITRE[i] + '&nbsp;'); 
  if (uURL[i] != ""){
   document.writeln('</a>');
  }
  if (cCOMMENTAIRE[i] != ""){
   document.writeln('<br><br><center>' + cCOMMENTAIRE[i] + '</center>');
  }
  document.writeln('</b></font>');
  document.writeln('</td></tr>');
 }
 document.writeln('</table></div>');
}

function VOIRHORI(){
 document.writeln('<div align="center"><table border="0" cellpadding="0" cellspacing="3"><tr>');
 for (i=1; i<COMPTEUR+1; i++){ 
  document.writeln('<td bgcolor="#8BDAC2">');
  
  document.writeln('<img border="0" src="' + CHEMIN + 'puceverte3.gif" align="left">');
  document.writeln('<font face="Arial" size="2"><b>');
  if (uURL[i] != ""){
   document.writeln('<a href="' + uURL[i] + '">');
  }
  document.writeln(tTITRE[i] + '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'); 
  if (uURL[i] != ""){
   document.writeln('</a>');
  }
  document.writeln('</b></font>');

  document.writeln('</td>');
 }
 document.writeln('</tr></table></div>');
} 

function RETOUR(TITRE,URL){
// document.writeln('<div align="right"><table border="0" cellspacing="0"><tr><td bgcolor="#8BDAC2">');
// document.writeln('<img border="0" src="' + CHEMIN + 'puceverte2.gif" width="11" height="11" hspace="2">');
// document.writeln('<font face="Arial" size="2"><b><a href="' + URL + '">' + TITRE + '&nbsp;</a></b></font>');
// document.writeln('</td></tr></table></div>');
 document.writeln('<div align="right"><table border="0" cellpadding="0" cellspacing="3">');
 document.writeln('<tr><td align="left" bgcolor="#8BDAC2">');
 document.writeln('<img border="0" src="' + CHEMIN + 'puceverte2.gif" align="left" vspace="2">');
 document.writeln('<font face="Arial" size="2"><b>');
 document.writeln('<a href="' + URL + '">');
 document.writeln(TITRE + '&nbsp;'); 
 document.writeln('</a>');
 document.writeln('</b></font>');
 document.writeln('</td></tr>');
 document.writeln('</table></div>');
}
//-->