titreMP3 = new Array;
cheminMP3 = new Array;
titreMP3[0] = "Bourdon Diphonie";
cheminMP3[0] = "_bourdon_diphonie.mp3";
titreMP3[1] = "Sygyt";
cheminMP3[1] = "_sygyt.mp3";
titreMP3[2] = "Clusters-Dissonances";
cheminMP3[2] = "_clusters.mp3";
titreMP3[3] = "Dans les plaines de Mongolie";
cheminMP3[3] = "_plaines_mongolie.mp3";
titreMP3[4] = "Chamaecyparis";
cheminMP3[4] = "_chamaecyparis.mp3";
titreMP3[5] = "Humandeya";
cheminMP3[5] = "_humandeya.mp3";

function ChangeMp3(formulaire)
	{
	numero = formulaire.ListeMP3.options[formulaire.ListeMP3.selectedIndex].value;
	if(document.getElementById && document.all && numero != "")
		{
		document.getElementById("blocson").innerHTML = "<EMBED SRC=\""+cheminMP3[numero]+"\" AUTOSTART=TRUE WIDTH=1 HEIGHT=1>";
		}
	}
if(document.getElementById && document.all)
		{
		document.write("<FORM><SELECT NAME=ListeMP3 onChange=\"ChangeMp3(this.form)\">")
		document.write("<OPTION VALUE=''> Select a background music\n");
		for(i=0;i<cheminMP3.length;i++)	
			{
			document.write("<OPTION VALUE=\""+i+"\"> "+titreMP3[i]+"\n");
			}
		document.write('</SELECT></FORM><DIV ID=blocson></DIV>')
		}
	