
function affcase(libelle, url, etat1, etat2) {
 if (etat1 == etat2)
   {
    document.write('  <TD VALIGN=TOP WIDTH=25% HEIGHT=14 BGCOLOR=#266BA3><TT><font FACE=Helvetica,Arial SIZE=-1>');
   }
 else
   {
    document.write('  <TD VALIGN=TOP WIDTH=25% HEIGHT=14 BGCOLOR=#819DD6><TT><font FACE=Helvetica,Arial SIZE=-1>');
   }  
 document.write('  <A HREF="' + url + '" class="NAV" onMouseOver="self.status=\'' + libelle + '\'; return true" onMouseOut=" self.status=\' \';">' + libelle + '</A></TT></TD>');
}

function affcasevide(libelle) {
 document.write('  <TD VALIGN=TOP WIDTH=25% HEIGHT=14 BGCOLOR=#819DD6><TT><font FACE=Helvetica,Arial SIZE=-1>');
 document.write('  ' + libelle + '</TT></TD>');
}

function affichenav(rubrique) {
 // TITRE
 document.write('<TABLE BORDER=0 CELLPADDING=3 WIDTH=460><TR><TD COLSPAN=4 BGCOLOR=#266BA3><B><TT><font FACE=Helvetica,Arial COLOR=#CCCCCC>');
 document.write('Logiciels &eacute;ducatif et p&eacute;dagogiques</TT></B>');
 document.write('</TD></TR>');

 // PREMIERE LIGNE
 document.write('<TR HEIGHT=14>');
 affcase('Anglais', '/fra/1_educatif/anglais.htm', '1', rubrique);
 affcase('Fran&ccedil;ais', '/fra/1_educatif/francais.htm', '2', rubrique);
 affcase('Histoire - G&eacute;ographie', '/fra/1_educatif/histgeo.htm', '3', rubrique);
 affcase('Maths - G&eacute;om&eacute;trie', '/fra/1_educatif/mathsgeo.htm', '4', rubrique);
 document.write('  </TR>');

 // SECONDE LIGNE
 document.write('<TR HEIGHT=14>');
 affcase('SVT', '/fra/1_educatif/svt.htm', '5', rubrique);
 affcase('Sciences physiques', '/fra/1_educatif/physiques.htm', '6', rubrique);
 affcase('Sciences chimie', '/fra/1_educatif/chimie.htm', '7', rubrique);
 affcase('Dessin - Bureautique', '/fra/1_educatif/dessin.htm', '8', rubrique);
 document.write('  </TR>');

 // TROISIEME LIGNE
 document.write('<TR HEIGHT=14>');
 affcase('Ens. sp&eacute;cialis&eacute;', '/fra/1_educatif/enseignement.htm', '9', rubrique);
 affcase('Formation pro.', '/fra/1_educatif/formation.htm', '10', rubrique);
 affcase('Economie - Droit', '/fra/1_educatif/economie.htm', '11', rubrique);
 affcase('G&eacute;n&eacute;alogie', '/fra/1_educatif/fiches/herclawi.htm', '12', rubrique);
 document.write('</TR>');
 
 // QUATRIEME LIGNE
 document.write('<TR HEIGHT=14>');
 affcase('Internet', '/fra/1_educatif/fiches/butinage.htm', '13', rubrique);
 affcase('Divers', '/fra/1_educatif/fiches/europeo.htm', '14', rubrique);
 affcase('Eveil', '/fra/1_educatif/fiches/galeveil.htm', '15', rubrique);
 affcasevide('&nbsp;');
 document.write('</TR></TABLE>');
}
