/* Calendar for page tm_tour_01.html */
		function CreateTMTourCalendar(DivName,FileName,Month,Year,PageId){ /* Create Calendar */
			$(DivName).append('<div id="tm_tour_calendar_box_load"></div>');
			$(DivName).append('<div id="tm_tour_calendar_box_ok"></div>');
			ShowTMTourCalendar(FileName,Month,Year,PageId)
		}
		function ShowTMTourCalendar(Month,Year,PageId){ /* Load Calendar */
			$('#tm_tour_calendar_box_load').show();
			$('#tm_tour_calendar_box_ok').hide();

			$.ajax({
				url: 'calendar_load.php', /* Name of a loaded php file for calendar */
				type: 'POST',
				data: {month: Month, year: Year, PageId: PageId}, /* Variables for calendar '$_POST['Month']' */
				success: function(responseText){
					$("#tm_tour_calendar_box_ok").html(responseText);
					$('#tm_tour_calendar_box_load').hide();
					$('#tm_tour_calendar_box_ok').show();
				}
			});
		}

/* PopUp for this calendar */
		function CreateTMTourCalendarPopUp(Day,PageId){  /* Create & load PopUp */
			$('body').append('<div class="tm_tour_popUpBG"></div>');
			$('body').append('<div class="tm_tour_popUp"><a href="javascript:closeTMTourCalendarPopUp()" class="tm_tour_popUp_close"></a><div id="tm_tour_popUp_load"></div><div id="tm_tour_popUp_ok"></div></div>');
			$('#tm_tour_popUp_load').show();
			$('#tm_tour_popUp_box_ok').hide();
			$.ajax({
				url: 'popup_load.php',  /* Name of a loaded php file for PopUp */
				type: 'POST',
				data: {day: Day, PageId: PageId},  /* Variables for PopUp '$_POST['Month']' */
				success: function(responseText){
					$("#tm_tour_popUp_ok").html(responseText);
					$('#tm_tour_popUp_load').hide();
					$('#tm_tour_popUp_box_ok').show();
				}
			});
		}
		function closeTMTourCalendarPopUp(){ /* Close PopUp */
			$('.tm_tour_popUpBG').remove();
			$('.tm_tour_popUp').remove();
		}

