<!-- Begin
function loadDates()
{

	var calendar = new Date();
	var calendar2 = new Date();
	var cal
	var cal2
	var date;
	var month;
	var year;
	var date2;
	var month2;
	var year2;
	
	//Here is the variable to change for to advance the arrival Date
	 var advanceArrival = 14; 
	
	//Here is the variable to change for to advance the departure Date
	 var advanceDeparture = 16; 
	
	
	//Set the arrival Days
	calendar.setDate(calendar.getDate()+ advanceArrival);
	date = calendar.getDate();
	month = calendar.getMonth();
	
	//Set the Departure Days
	calendar2.setDate(calendar2.getDate()+advanceDeparture); 
	date2 = calendar2.getDate();
	month2 = calendar2.getMonth();
	
	document.forms['frm_Search'].arrivalMonth.value=month;
	document.forms['frm_Search'].arrivalDay.value=date;
	document.forms['frm_Search'].departureMonth.value=month2;
	document.forms['frm_Search'].departureDay.value=date2;
	
	
}

//  End -->	