function Deplacer(l1,l3) {
if (l1.options.selectedIndex>=0) {
	o=new Option(l1.options[l1.options.selectedIndex].text,l1.options[l1.options.selectedIndex].value);
	l3.options[l3.options.length]=o;
	l1.options[l1.options.selectedIndex]=null;
}else{
	alert("Aucun extrait sélectionné");
	}
}

function playIt(filename) {
Player.URL = filename;
}