var baseURL_f = "/lacleamy/fr/congres-banquets/box/";
var baseURL_e = "/lacleamy/en/conventions-banquets/box/";

function go_f() {		
	box = document.forms[0].navi;
	destination = box.options[box.selectedIndex].value;	
	if (destination) location.href = baseURL_f + destination;
}

function go_e() {		
	box = document.forms[0].navi;
	destination = box.options[box.selectedIndex].value;	
	if (destination) location.href = baseURL_e + destination;
}

function selectRoom() {
	var sel = document.forms[0].navi;
		
	for (var i = 0; i < sel.options.length; i++) {		
	   if (sel.options[i].value == roomName){	   
	   	sel.options[i].selected=true;
	   	} 
	}
}

// fais maintenant directement dans la page html
//window.onload = selectRoom;
