   function loadHotelDates() {
        var hotelArrival = new Date();
        var hotelDeparture = new Date();

        var hotelAdvanceArrival = 21;
        var hotelAdvanceDeparture = 23;

        hotelArrival.setDate( hotelArrival.getDate() + hotelAdvanceArrival );
        hotelDeparture.setDate( hotelDeparture.getDate() + hotelAdvanceDeparture );

        document.forms['hotelForm'].arrivalMonth.value = hotelArrival.getMonth();
        document.forms['hotelForm'].departureMonth.value = hotelDeparture.getMonth();
        document.forms['hotelForm'].arrivalDay.value = hotelArrival.getDate();
        document.forms['hotelForm'].departureDay.value = hotelDeparture.getDate();
    }

   function loadDefaultDates() {
        var hotelArrival = new Date();
        var hotelDeparture = new Date();

        var hotelAdvanceArrival = 21;
        var hotelAdvanceDeparture = 23;

        hotelArrival.setDate( hotelArrival.getDate() + hotelAdvanceArrival );
        hotelDeparture.setDate( hotelDeparture.getDate() + hotelAdvanceDeparture );

        document.forms['hotelForm'].arrivalMonth.value = hotelArrival.getMonth();
        document.forms['hotelForm'].departureMonth.value = hotelDeparture.getMonth();
        document.forms['hotelForm'].arrivalDay.value = hotelArrival.getDate();
        document.forms['hotelForm'].departureDay.value = hotelDeparture.getDate();

    }
