function createMenuLeft (root, backcolor, outcolor, overcolor)
{	
	var i=0;
	var n=22;
	var tt = new Array (n);
	var tn = new Array (n);
	var tu = new Array (n);
	i=0;
	tt[i]="1";	tn[i]="Présentation";			tu[i++]="";
	tt[i]="2";	tn[i]="Le site";				tu[i++]=root+"site.php";
	tt[i]="2";	tn[i]="L'auteur";				tu[i++]=root+"auteur.php";
	tt[i]="1";	tn[i]="Actualités";				tu[i++]="";
	tt[i]="2";	tn[i]="Nouvelles";				tu[i++]=root+"news.php";
	tt[i]="2";	tn[i]="Nouvelles du Net";		tu[i++]=root+"extnews.php";
	/*tt[i]="1";	tn[i]="Publications";			tu[i++]="";
	tt[i]="2";	tn[i]="Marketing automobile";	tu[i++]=root+"markauto.php";
	tt[i]="2";	tn[i]="Autres documents";		tu[i++]=root+"moreinfos.php";*/
	tt[i]="1";	tn[i]="Thèmes";					tu[i++]="";
	tt[i]="2";	tn[i]="Les marques";			tu[i++]=root+"themes1.php";
	tt[i]="2";	tn[i]="Le marketing stratégique";	tu[i++]=root+"themes2.php";		
	tt[i]="2";	tn[i]="La co-création";			tu[i++]=root+"themes3.php";			
	tt[i]="1";	tn[i]="Services";				tu[i++]="";
	tt[i]="2";	tn[i]="Marketing";				tu[i++]=root+"services.php#marketing";
	tt[i]="2";	tn[i]="Création Web";			tu[i++]=root+"services.php#web";	
	tt[i]="2";	tn[i]="Formation";				tu[i++]=root+"services.php#formation";	
	tt[i]="2";	tn[i]="Recherches";				tu[i++]=root+"services.php#recherches";
	tt[i]="2";	tn[i]="Annuaires";				tu[i++]=root+"annuaires.php";
	tt[i]="1";	tn[i]="Formation";				tu[i++]="";
	tt[i]="2";	tn[i]="FPMs";					tu[i++]=root+"fpms.php";
	tt[i]="2";	tn[i]="Séminaires";				tu[i++]=root+"seminaires.php";	
	

	document.writeln ("<DIV STYLE=\"width:155px; background:#99CC99;\">");
	document.writeln ("<TABLE STYLE=\"width:155px; border:1px solid #003866; border-collpse:collapse;\">");
	i=0;
	while (i<n)
	{
		if (tt[i]==1)
		{
			document.write 	 ("<TR><TD STYLE=\"text-align:center; font-weight:bold; background:#003866; color:#FFFFFF;\">");
			document.write 	 (tn[i]);
			document.writeln ("</TD></TR>");
		}
		if (tt[i]==2)
		{
			document.writeln ("<TR><TD BGCOLOR=\"#FFFFFF\"");
			document.writeln ("ONMOUSEOUT=\"setPointerCell(this, 'out', '#FFFFFF', '#CCFFCC', '#FFCC99');\"");
			document.writeln ("ONMOUSEOVER=\"setPointerCell(this, 'over', '#FFFFFF', '#CCFFCC', '#FFCC99');\"");
			document.writeln ("STYLE=\"text-align:center; color:#003866; border:1px solid #003866;\">");
			document.write 	 ("<A CLASS=\"gtartmenu\" HREF=\"");
			document.write 	 (tu[i]);
			document.writeln ("\">");
			document.write 	 (tn[i]);
			document.writeln ("</A>");
			document.writeln ("</TD></TR>");
		}
		i++;
	}
	document.writeln ("</TABLE></DIV>"); 
}	

function createMenuTop (root, backcolor, outcolor, overcolor)
{	
	i=0;
	n=6; col=3;
	var tn = new Array (n);
	var tu = new Array (n);
	tn[0]="Rechercher";		tu[0]=root+"rechercher.php";
	tn[1]="Imprimer";		tu[1]="javascript:print();";
	tn[2]="Accueil";		tu[2]=root+"index.php";	
	tn[3]="Nouveautés";		tu[3]=root+"news-ecocentric.php";
	tn[4]="A propos de";	tu[4]=root+"aproposde.php";
	tn[5]="Contact";		tu[5]=root+"contact.php";
		

	document.writeln ("<TABLE STYLE=\"border:1px solid #003866; border-collpse:collapse;\">");
	while (i<n)
	{
		if (i==0)		document.writeln ("<TR>");
		document.writeln ("<TD BGCOLOR=\"#FFFFFF\"");
		document.writeln ("ONMOUSEOUT=\"setPointerCell(this, 'out', '#FFFFFF', '#CCFFCC', '#FFCC99');\"");
		document.writeln ("ONMOUSEOVER=\"setPointerCell(this, 'over', '#FFFFFF', '#CCFFCC', '#FFCC99');\"");
		document.writeln ("STYLE=\"width:100px; text-align:center; color:#003866; border:1px solid #003866;\">");
		document.write 	 ("<A CLASS=\"gtartmenu\" HREF=\"");
		document.write 	 (tu[i]);
		document.writeln ("\">");
		document.write 	 (tn[i]);
		document.writeln ("</A>");
		document.writeln ("</TD>");
		i++;
		if (i==col)	document.writeln ("</TR><TR>");
		if (i==n)	document.writeln ("</TR>");	
	}
	document.writeln ("</TABLE>"); 
}