function ScheduleModify(){
	var thisform = document.searchForm2;
	
	var AdultCnt = thisform.s_AdultCnt.value;
	var YoungCnt = thisform.s_YoungCnt.value;
	var ChildCnt = thisform.s_ChildCnt.value;

	var pYyyy  = thisform.from_year.value;
	var pMm    = thisform.from_month.value;
	var pDd    = thisform.from_day.value;
	var pYyyy1 = thisform.to_year.value;
	var pMm1   = thisform.to_month.value;
	var pDd1   = thisform.to_day.value;

	var orgTourStartDate = thisform.tourStartDate.value;
	var orgTourEndDate = thisform.tourEndDate.value;

	var newTourStartDate	= pYyyy +'-'+ pMm +'-'+ pDd
	var newTourEndDate		= pYyyy1 +'-'+ pMm1 +'-'+ pDd1

	pMm = parseInt(pMm - 1) 
	pMm1 = parseInt(pMm1 - 1)
						
	var nowDate		= new Date()		
	var startDate	= new Date(pYyyy,pMm,pDd);
	var endDate		= new Date(pYyyy1,pMm1,pDd1);

	var day = 1000*60*60*24;

	//¿©Çà½ÃÀÛÀÏÀÌ ±ÝÀÏ ÀÌÈÄÀÎÁö Ã¼Å©
	var startChk = startDate - nowDate ;
	var startChkIntervalDay = parseInt(startChk/day)

	//¿©Çà½ÃÀÛÀÏ°ú Á¾·áÀÏÀÇ Ã¼Å©
	var interval = endDate - startDate;
	var intervalDay = parseInt(interval/day)

	if (startChkIntervalDay < 0){
		alert ("¿©ÇàÀÏÁ¤À» È®ÀÎÇØ ÁÖ½Ê½Ã¿À.\n¿©Çà½ÃÀÛÀÏÀº ±ÝÀÏ ÀÌÈÄÀÌ¾î¾ß ÇÕ´Ï´Ù.");
		return;
	}

	if (intervalDay < 0){
		alert ("¿©ÇàÀÏÁ¤À» È®ÀÎÇØ ÁÖ½Ê½Ã¿À.\n¿©Çà½ÃÀÛ/Á¾·áÀÏÀ» Àß¸ø ¼±ÅÃÇÏ¼Ì½À´Ï´Ù.");
		return;
	}

	//if (intervalDay > 6){
		//alert ("¿©ÇàÀÏÁ¤À» È®ÀÎÇØ ÁÖ½Ê½Ã¿À.\n¿©ÇàÀÏÁ¤Àº ÀÏÁÖÀÏ ¾È¿¡¼­ Á¶È¸°¡ °¡´ÉÇÕ´Ï´Ù.\nÀå±â°£ÀÇ ¿©Çà ÀÏÁ¤Àº ÀüÈ­»ó´ãÀ» ÅëÇØ ÀÌ·ç¾îÁý´Ï´Ù.");
		//return;
	//}

			
	if ((parseInt(AdultCnt)+parseInt(YoungCnt)+parseInt(ChildCnt)) == 0){
		alert('¿©ÇàÀÎ¿øÀ» ¼±ÅÃÇØ ÁÖ½Ê½Ã¿À.');
		return;
	}

	if (orgTourStartDate != newTourStartDate || orgTourEndDate != newTourEndDate){
		//alert('aaaaa');
		thisform.tourScheduleChange.value = 'yes';
	}

	thisform.tourSchedule1.value = intervalDay;
	thisform.tourSchedule2.value = intervalDay + 1;
	thisform.selectTourDate.value = 'no';	
	
	
	//thisform.action = nextPage;
	thisform.submit();	

}

