
function btnSeekSubmit(btnName) {
		getSeekYmd();
		window.open('https://asp.hotel-story.ne.jp/ver3d/planlist.asp?hcod1=00960&hcod2=001&hidmode=select&mode=seek&hidSELECTARRYMD='+document.frmplanseek.hidSELECTARRYMD.value + '&hidSELECTHAKSU='+document.frmplanseek.hidSELECTHAKSU.value + '&hidSELECTadult='+document.frmplanseek.cmbADULT.value + '&hidSELECTminPrice='+document.frmplanseek.minPrice.value + '&hidSELECTmaxPrice='+document.frmplanseek.maxPrice.value,'planlist','width=800,Height=600,resizable=yes,scrollbars=yes,status=yes');
	}

	function getSeekYmd() {
		var tmpText;
		var sIndex;
		sIndex = document.frmplanseek.cmbARRY.selectedIndex;
		tmpText = document.frmplanseek.cmbARRY.options[sIndex].value;
		sIndex = document.frmplanseek.cmbARRM.selectedIndex;
		tmpText = tmpText + '/' + document.frmplanseek.cmbARRM.options[sIndex].value;
		sIndex = document.frmplanseek.cmbARRD.selectedIndex;
		tmpText = tmpText + '/' + document.frmplanseek.cmbARRD.options[sIndex].value;
		document.frmplanseek.hidSELECTARRYMD.value = tmpText
	}