	function MakeReservation()
	{
		strDate = "";
		
		for (var i=0; i<obj_calendar1.selectedDates.length; i++)
		{
			strDate += obj_calendar1.selectedDates[i].getDate()+"-"+(obj_calendar1.selectedDates[i].getMonth()+1)+"-"+obj_calendar1.selectedDates[i].getFullYear()+"_";
		}
		
		window.location = "booking-apartments.php?d="+strDate
	}