// Fonction pour go to url navigation select box
//function goTo() {
//	var sE = null, url;
//	if(document.getElementById) {
//	sE = document.getElementById('urlList');

//	} else if(document.all) {
//	sE = document.all['urlList'];
//	}
//	if(sE && (url = sE.options[sE.selectedIndex].value)) {
//	location.href = url;
//}
//}

//function goTo(){
//	window.location=document.rapide.urlList.options[document.rapide.urlList.selectedIndex].value;
//}
  
function gotourl( mySelect ) {
      myIndex = mySelect.selectedIndex;
      myValue = mySelect.options[myIndex].value;
      window.location.href = myValue;
}
function goToContenu(){
	frames['resultat'].location=document.SelectEtablissement.urlListEtablissement.options[document.SelectEtablissement.urlListEtablissement.selectedIndex].value;
}
