





songs = new Array(); 

function The_songs(titre, fichier)
{
this.titre = titre;
this.fichier = fichier;
} 


songs[0] = new The_songs("sardane","santaesp1.mid");
songs[1] = new The_songs("starsky","starsky.mid");
songs[2] = new The_songs("zorro","zorro.mid");
songs[3] = new The_songs("gentleman","gentleman.mid");
songs[4] = new The_songs("ete indien","ete_indien.mid");
songs[5] = new The_songs("africa","africa.mid");
songs[6] = new The_songs("lambada","lambada.mid");
songs[7] = new The_songs("barber","barber.mid");
songs[8] = new The_songs("Pas de musique","");


function PlaySong()
{

var choice_song = 1; 
for (i=0; i<songs.length; i++)

if (document.formu.choix.options[i].selected) choice_song = i
document.formu.title.value = songs[choice_song].titre;

if (choice_song!=songs.length-1)
{

if (document.all&&document.readyState=="complete")
document.all.Layer1.innerHTML = '<EMBED src="'+ songs[choice_song].fichier +'" border="0" autostart="true" width="145" height="45" loop="true" autoplay="true">';

if (document.layers)
{ document.Layer1.document.open();
document.Layer1.document.write('<EMBED src="'+ songs[choice_song].fichier +'" border="0" autostart="true" width="145" height="45" loop="true" autoplay="true">');
document.Layer1.document.close();}

}

else

{

if (document.all)
document.all.Layer1.innerHTML ="";

if (document.layers)
{ document.Layer1.document.open();
document.Layer1.document.write("");
document.Layer1.document.close();}

}

}

ran=parseInt((songs.length-1)*Math.random());

// génération de la liste déroulante des morceaux de musique
document.write("<center><FORM name='formu'><SELECT name='choix' onchange='PlaySong()'>")

for (i=0;i<songs.length;i++)
{
//alert(ran)
//alert(i)
if (i==ran) {selectionne="selected"}
else {selectionne=""}

document.write("<OPTION "+selectionne+">"+songs[i].titre+"</OPTION>")
}


document.write("</SELECT></FORM></center>")

// On affiche le lecteur media
document.write("<center><DIV id=Layer1 style=position:relative; width:145; z-index:1; visibility: visible><EMBED SRC= " + songs[ran].fichier + " LOOP=true AUTOPLAY=true HIDDEN=false HEIGHT=45 WIDTH=145 BGCOLOR=#000000 TXTCOLOR=#FFFFFF NOSAVE=TRUE AUTOSTART=TRUE name=platine></DIV></center><br>");






