<!--
function jump_menu(nom_liste,msg_popup_warning) {
	var newIndex = nom_liste.selectedIndex;

	if (newIndex == 0) {
		alert(msg_popup_warning);
	} else {
		current_url = nom_liste.options[newIndex].value;
		window.location.assign(current_url);
	}
}
//-->
