function majDate() {
	//alert(document.getElementById("selDateArrivee").length);
	if(document.getElementById("selDateArrivee").selectedIndex+1<document.getElementById("selDateArrivee").length) {
		val = 1;
	}else {
		val = 0;
	}
	nextWeek = document.getElementById("selDateArrivee").selectedIndex+val;
	document.getElementById("selDateDepart").selectedIndex = nextWeek ;
}
function valider_form_hotels() {
		var param ="dateDeb="+document.getElementById("annee_arrivee").value+"-";
		param += document.getElementById("mois_arrivee").value+"-"+document.getElementById("jour_arrivee").value;
		param += "&dateFin="+document.getElementById("annee_depart").value+"-";
		param += document.getElementById("mois_depart").value+"-"+document.getElementById("jour_depart").value;

		param += "&optCAT=";
		param += document.resaDate.selectedType.value;

		var today = new Date();
		param += "&rd="+today.getTime();
		//alert(param);
		//document.location.href='/hebergement/disponibilites/index.html?'+param;
		document.location.href='http://www.bayonne-tourisme.com/index.php?id=30&'+param;
		//document.location.href='./index.php?id=30&'+param;
	}