

<!--DY_New_Search
//
	// 日付を自動設定
	// 初期値は、翌日宿泊日になっています
	// 当日の場合は、today.setDate(today.getDate() + 1)　を　today.setDate(today.getDate())　にしてください
		var objfrm =  document.frmplanseek

		today = new Date();
		today.setDate(today.getDate());

		objfrm.cmbARRY.value = today.getFullYear();
		objfrm.cmbARRM.value = today.getMonth() + 1;
		objfrm.cmbARRD.value = today.getDate();

//-->
