1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <div id="MenuEntete">
Menu
</div>
<script language="JavaScript">
function color(id) {
if (document.getElementById) {
document.getElementById(id).style.color = 'black';
document.getElementById(id).style.fontWeight = 'bold';
} else if (document.all) {
document.all[id].style.color = 'black';
document.all[id].style.color = 'bold';
}
}
</script>
<ul>
<li><a href="/e-tbx/index.jsp" onClick="color('accueil')" onFocus="color('accueil')"><span id="accueil">Accueil</span></a></li>
<li><a href="/e-tbx/profiles/profils.jsp" onClick="color('profils')"><span id="profils">Mes Profils</span></a></li>
<li><a href="/e-tbx/profiles/Gerer/gerer.jsp" onClick="color('gerer')" class="liNiveau2"><span id="gerer">Gérer</span></a></li>
<li><a href="/e-tbx/search/recherche.jsp" onClick="color('recherche')"><span id="recherche">Recherche</span></a></li>
<li><a href="/e-tbx/search/Simple/rechercheSimple.jsp" onClick="color('simple')" class="liNiveau2"><span id="simple">simple</span></a></li>
<li><a href="/e-tbx/search/Avancee/rechercheAvancee.jsp" onClick="color('avancee')" class="liNiveau2"><span id="avancee">avancée</span></a></li>
<li><a href="http://www.google.ch/" >Quitter</a></li>
</ul>
<div id="MenuFooter">
</div> |