function setdate(){
	thisForm = document.hotelSearchCriteriaForm;
	if ( thisForm != null ) {
		var now = new Date();
		var checkinDate = new Date(now.getTime() + (14 * 24*60*60*1000));
		var checkoutDate = new Date(now.getTime() + (16 * 24*60*60*1000));
		thisForm.arrivalMonth.options[checkinDate.getMonth()].selected = true;
		thisForm.departureMonth.options[checkoutDate.getMonth()].selected = true;
		thisForm.arrivalDay.options[checkinDate.getDate()-1].selected = true;
		thisForm.departureDay.options[checkoutDate.getDate()-1].selected = true;
	}
}
