function goReserve() {
  thisMonth = document.reservation.month.options[document.reservation.month.selectedIndex].value;
  if (thisMonth.length == 1) { thisMonth = "0" + thisMonth; }
  thisDate = document.reservation.date.options[document.reservation.date.selectedIndex].value;
  if (thisDate.length == 1) { thisDate = "0" + thisDate; }
  thisYear = document.reservation.year.options[document.reservation.year.selectedIndex].value;
  var destURL = "reserve.html?arrMonth=" + thisMonth + "&arrDate=" + thisDate + "&arrYear=" + thisYear + "&numberOfNights=" + document.reservation.numberOfNights.options[document.reservation.numberOfNights.selectedIndex].value;
//  alert (destURL);
  window.location.href = destURL;
}

window.addEvent("domready", function(){
	var today = new Date();
	var calender1 = new Calendar("calendar1", "cal1_toggler", {inputField:{date:'date',
																	month:'month',
																	year:'year'},
																	inputType:'select',
																	idPrefix:'cal1',
																	numMonths:1,
																	allowWeekendSelection:true
																});
		
	var us_holidays = [{date:1,
					month:0},
					{date:"3rd Monday",
					month:0},
					{date:"3rd Monday",
					month:1},
					{date:"last Monday",
					month:4},
					{date:4,
					month:6},
					{date:"1st Monday",
					month:8},
					{date:"2nd Monday",
					month:9},
					{date:11,
					month:10},
					{date:"4th Thursday",
					month:10},
					{date:25,
					month:11}];
});
