function get_TimeList(){
	var strTmpVal = '';
	var n = document.getElementsByName('TimeList')[0];

	return '&' + 'TimeList/' + n.options[n.selectedIndex].value;
}

function search_chk_eki(intNum, strUrl){
	var InfoPath = '';
	InfoPath += get_TimeList();
	InfoPath += '/' +'StEkiName' + '/' + document.getElementsByName('StEkiName')[0].value;

	if (intNum == '1') {
	//	document.form.action = document.form.action + InfoPath;
	}
	if(document.getElementsByName('StEkiName')[0].value ==''){
		alert('駅名を入力してください');
		return;
	} else {
		InfoPath = InfoPath.substring(1, InfoPath.length);
		location.href = strUrl + InfoPath;
	}
}
