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;
}