// JavaScript Document
function choix(formulaire,n){
var x;
var y;
if(n==1)
	x=formulaire.liste1;
else if(n==2)
	x=formulaire.liste2;

y=x.selectedIndex;
if(y>0)
 location.href=x.options[y].value;

}