function jouer(mp3_file,titre) {
document.all.lecteur.innerHTML='<p style="margin:0; text-align:center; text-transform: none;">Sélectionner un titre</p><object type="application/x-shockwave-flash" width="200" height="20" bgcolor="#46454B"><param name="movie" value="mp3/dewplayer.swf?son=mp3/'+mp3_file+'"/><param name="bgcolor" value="#46454B" /><embed src="mp3/dewplayer.swf?son=mp3/'+mp3_file+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="200" height="20"></object><p style="margin:0; text-align:center;">" '+titre+' "</p>'; 
}

function inserer(id, largeur, hauteur, quoi){
divid=document.getElementById(id);
intext = '<object type="application/x-shockwave-flash" width="'+largeur+'" height="'+hauteur+'"><param name="movie" value="'+quoi+'" /><param name="quality" value="high" />';
if (id=='sortie')
{
	intext = intext+'<param name="LOOP" value="false">';
}
intext = intext+'<embed src="'+quoi+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+largeur+'" height="'+hauteur+'"></embed></object>';

divid.innerHTML=intext;

/*divid.innerHTML='<object type="application/x-shockwave-flash" width="'+largeur+'" height="'+hauteur+'"><param name="movie" value="'+quoi+'" /><param name="quality" value="high" /><param name="LOOP" value="false" /><embed src="'+quoi+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+largeur+'" height="'+hauteur+'"></embed></object>';*/
}

