/* AUTEUR: Naigeon */
/* DATE DE CREATION: 18/04/1999 */

<!-- Debut script

function ChoixMenu( i, j )
{
	if( i == 1 )
	{
		if( j == 1 ) return "accueil.html" ;
		if( j == 2 ) return "ligatures.html" ;
		if( j == 3 ) return "pren_cadres.html" ;
		if( j == 4 ) return "liens.html" ;
		if( j == 5 ) return "parcours_flute.html" ;
		if( j == 6 ) return "ma_musique.html" ;
	}
	if( i == 2 )
	{
		if( j == 1 ) return "qui_suis_je.html" ;
		if( j == 2 ) return "mensur_intro.html" ;
		if( j == 3 ) return "partitions.html" ;
		if( j == 4 ) return "biblio.html" ;
		if( j == 5 ) return "stages_pratens.html" ;
	}
	if( i == 3 )
	{
		if( j == 2 ) return "coloration.html" ;
		if( j == 3 ) return "formats_son.html" ;
		if( j == 4 ) return "webrings.html" ;
		if( j == 5 ) return "mes_flutes.html" ;
	}
}
function OptionMenu( i, j )
{
	if( i == 1 )
	{
		if( j == 1 ) return "Accueil" ;
		if( j == 2 ) return "Les ligatures" ;
		if( j == 3 ) return "Pi&egrave;ces renaissance" ;
		if( j == 4 ) return "Cr&eacute;dits et liens" ;
		if( j == 5 ) return "A propos de fl&ucirc;te à bec" ;
		if( j == 6 ) return "Ma musique" ;
	}
	if( i == 2 )
	{
		if( j == 1 ) return "Qui suis-je ?" ;
		if( j == 2 ) return "La mensuration" ;
		if( j == 3 ) return "Partitions" ;
		if( j == 4 ) return "Bibliographie" ;
		if( j == 5 ) return "Stages et jeu d'ensemble" ;
	}
	if( i == 3 )
	{
		if( j == 2 ) return "La coloration" ;
		if( j == 3 ) return "Midi, Wav, Mp3 ..?" ;
		if( j == 4 ) return "Webrings" ;
		if( j == 5 ) return "Mes fl&ucirc;tes renaissance" ;
	}
}
function Menu( i, j )
{
	document.write( "<A HREF='" + ChoixMenu( i, j ) 
					+ "' TARGET='centre'>"
					+ OptionMenu( i, j )
					+ "</A>"
				    )	
}
function MenuNew( i, j )
{
	document.write( "<A HREF='" + ChoixMenu( i, j ) 
					+ "' TARGET='new'>"
					+ OptionMenu( i, j )
					+ "</A>"
				    )	
}

//  Fin script -->

