function Lien1() {
	i = document.Choix1.Liste1.selectedIndex;
	if (i == 0) return;
	url = document.Choix1.Liste1.options[i].value;
	parent.location.href = url;
}


function Lien2() {
	i = document.Choix2.Liste2.selectedIndex;
	if (i == 0) return;
	url = document.Choix2.Liste2.options[i].value;
	parent.location.href = url;
}


function Lien3() {
	i = document.Choix3.Liste3.selectedIndex;
	if (i == 0) return;
	url = document.Choix3.Liste3.options[i].value;
	parent.location.href = url;
}


function Lien4() {
	i = document.Choix4.Liste4.selectedIndex;
	if (i == 0) return;
	url = document.Choix4.Liste4.options[i].value;
	parent.location.href = url;
}


