elt = new Array;
lien_elt = new Array;

elt[0] = new Array;
elt[1] = new Array;

lien_elt[0] = new Array;
lien_elt[1] = new Array;


elt[0] = "Contact";
elt[1] = "Mentions l&eacute;gales";
elt[2] = "Copyright © ideneo 2005, Tous Droits R&eacute;serv&eacute;s";
elt[3] = "Qui sont-ils";


lien_elt[0] = "/fre/contact.php?rub=contact";
lien_elt[1] = "/fre/mentions_legales.php?rub=mentions";
lien_elt[2] = "#";
lien_elt[3] = "/fre/qui_sont_ils.php?rub=qui";



function f_affiche_menuBas()
{
 var i;
 var menu="<table class='MenuBasGris' border='0' cellpadding='0' cellspacing='0' align='right' width='570' height='15' style='border-top:1px solid black;border-bottom:1px solid black'><tr>";

 for(i=0; i<elt.length; i++) {
	 if (i==2){
	 	menu += "<td class='MenuBasGris'>&nbsp;|&nbsp;" +elt[i]+ "</td>";	 
	 }else{
	 	menu += "<td>&nbsp;|&nbsp;<a class='MenuBas' href='" + lien_elt[i] + "'>" +elt[i]+ "</a></td>";	 
 	 }
 }

 menu += "<td>&nbsp;|&nbsp;</td></tr></table>";

document.getElementById("menu_bas").innerHTML= menu;
}