	var b = new Browser();
	var no_date=true;
	var date_du_jour = new Date();
	var date_arrivee=new Date();
	var date_depart = new Date(date_du_jour.getFullYear(),date_du_jour.getMonth(),date_du_jour.getDate()+1);
	date_reference = date_arrivee;
	var date_max = new Date(date_du_jour.getFullYear(),date_du_jour.getMonth(),date_du_jour.getDate()+405);
	var date_min = new Date(date_du_jour.getFullYear(),date_du_jour.getMonth(),date_du_jour.getDate());
	//if (date_arrivee<date_min) date_arrivee=date_min;
	//if (date_du_jour<date_min) date_du_jour=date_min;
	var calendrier_pro = new Calendrier(date_arrivee,date_depart,date_min,date_max, 1, 1, 23);
	
function init_home(){
	calendrier_pro.affichage_calendrier(document.catalogue2);
	init_select(document.catalogue2.jour_arrivee);
	init_select(document.catalogue2.mois_arrivee);
	init_select(document.catalogue2.annee_arrivee);
	if(document.catalogue2.jour_depart){
	init_select(document.catalogue2.jour_depart);
	init_select(document.catalogue2.mois_depart);
	init_select(document.catalogue2.annee_depart);
	}
	init_select(document.catalogue2.nb_nuit);
	if($('form_date_jour')) $('form_date_jour').style.visibility="hidden";
	if(d_destination != null && d_destination !=""){
		$('hotel_ou_ville').value=d_destination;
	}
	if(d_stayDates != null && d_stayDates !=""){
		$('jour_arrivee').selectedIndex=d_stayDates.dayIn;
		$('mois_arrivee').selectedIndex=d_stayDates.monthIn;
		$('annee_arrivee').selectedIndex=d_stayDates.yearIn-date_du_jour.getFullYear()+1;
		$('nb_nuit').selectedIndex=d_stayDates.nbNights;
		if($('date_depart')){
		date_depart=new Date(d_stayDates.yearIn,d_stayDates.monthIn-1,d_stayDates.dayIn+d_stayDates.nbNights+1);
		$('date_depart').innerHTML = jourArray[langue][date_depart.getDay()] + " " + date_depart.getDate() + " " + moislongArray[langue][date_depart.getMonth()] + " " + date_depart.getFullYear();
		
	$('date_depart').style.visibility="visible";
		}
	}
	
	/* Hotel favori*/
	Event.observe($('linkfav'), 'click', function (evt) {
	 Event.stop(evt);
	AW_SpawnWindow('alpha','/modeles/mod_favoris.jsp?path=home','beta','width=600,height=455,toolbar=no,location=no,menubar=no,resizable=no,status=no,screenX=0,left=0,screenY=0,top=0,scrollbars=no');
	}
	)
	/* End Hotel favori*/

	
}
