function CreeTableau() {
	this.length = CreeTableau.arguments.length
	for (var i = 0; i < this.length; i++)
	this[i+1] = CreeTableau.arguments[i]
	}
	
var LibelleOption = new CreeTableau("LISTE DES DISQUES EN VENTE",
"Liturgie juive traditionnelle - Michel Heymann",
"Airs liturgiques ashkenazes traditionnels - Michel Heymann",
"Office du matin de Roch Hachana - Michel Heymann",
"Pr&eacute;paration à la Bar-Mitzva - Michel Heymann",
"Liturgie de la Vall&eacute;e du Rhin - Michel Heymann");


var CibleURL = new CreeTableau("",
"disques.htm#trad",
"disques.htm#ashken",
"disques.htm#roch",
"disques.htm#barm",
"disques.htm#lit1");


function AllerA(form) {
	i = form.SelectMenu.selectedIndex;
	if (i == 0) return;
	location.href = CibleURL[i+1];
	}
