function go_liste_theme(arg){
	alert(arg);
	var ou = "http://www.ibishotel.com/hotel-cms/fr/packages/listes/theme_" + arg + "_1.shtml";
	location.href = ou;
}

function go_liste_destination(arg){
	var ou = "http://www.ibishotel.com/hotel-cms/fr/packages/listes/destination_" + arg + "_1.shtml";
	location.href = ou;
}

var vtype		= "";
var vvaleur		= "";
function sel_liste(arg1, arg2){
	// Theme
	if (arg1 == 'ds_theme'){
		vtype	= arg1;
		vvaleur	= arg2;
		document.sejours.ds_destination.selectedIndex	= 0;
		document.sejours.ds_periode.selectedIndex		= 0;
	}
	// Destination
	if (arg1 == 'ds_destination'){
		vtype 	= arg1;
		vvaleur = arg2;
		document.sejours.ds_theme.selectedIndex			= 0;
		document.sejours.ds_periode.selectedIndex		= 0;
	}
	// Periode
	if (arg1 == 'ds_periode'){
		vtype	= arg1;
		vvaleur	= arg2;
		document.sejours.ds_theme.selectedIndex			= 0;
		document.sejours.ds_destination.selectedIndex	= 0;
	}
}

function go_liste(){
	if ((vtype != '') && (vvaleur != '')){
		if (vtype == 'periode'){
			var ou = "http://www.ibishotel.com/hotel-cms/fr/packages/listes/" + vtype + "_" + vvaleur + "-01_1.shtml";
		}else{
			var ou = "http://www.ibishotel.com/hotel-cms/fr/packages/listes/" + vtype + "_" + vvaleur + "_1.shtml";
		}
		location.href = ou;
	}
	return false;
}
