<!-- 
function fload(){
	document.entry.ku.selectedIndex=0;
	document.entry.en.selectedIndex=0;
}

function cho_set(sel){
	if(sel==""){entry.elements['cho'].length=0; return;};
	document.entry.cho.length=0;
	for(var i=0; i < cho_arr[sel].length; i++){
		document.entry.cho.length++;
		document.entry.cho.options[i].value = cho_arr[sel][i];
		document.entry.cho.options[i].text  = cho_arr[sel][i];
	}
}

function eki_set(sel){
	if(sel==""){entry.elements['eki'].length=0; return;};
	document.entry.eki.length=0;
	for(var i=0; i < eki_arr[sel].length; i++){
		document.entry.eki.length++;
		d=eki_arr[sel][i].split('|');
		document.entry.eki.options[i].value = d[0];
		document.entry.eki.options[i].text  = d[1];
	}
}

function SearchBukken(s){
	if(s==0 && document.entry.ku.selectedIndex==0){alert('地区を選択してください。'); return false;}
	if(s==1 && document.entry.en.selectedIndex==0){alert('沿線を選択してください。'); return false;}
	if(s==0 && document.entry.c_men_fr.selectedIndex > document.entry.c_men_to.selectedIndex){alert('面積条件の設定に誤りがあります。'); return false;}
	if(s==1 && document.entry.e_men_fr.selectedIndex > document.entry.e_men_to.selectedIndex){alert('面積条件の設定に誤りがあります。'); return false;}
	if(s==0 && document.entry.c_chin_fr.selectedIndex > document.entry.c_chin_to.selectedIndex && document.entry.c_chin_to.selectedIndex>0){alert('賃料条件の設定に誤りがあります。'); return false;}
	if(s==1 && document.entry.e_chin_fr.selectedIndex > document.entry.e_chin_to.selectedIndex && document.entry.e_chin_to.selectedIndex>0){alert('賃料条件の設定に誤りがあります。'); return false;}
	document.entry.kubun.value=s;
	document.entry.method='post';
	document.entry.target='_self';
	document.entry.action='bukkenlist.php';
	document.entry.submit();
}

function SearchBukkenList(s){
	if(s==0 && document.entry.ku.options[document.entry.ku.selectedIndex].value==''){alert('地区を選択してください。'); return false;}
	if(s==1 && document.entry.en.options[document.entry.en.selectedIndex].value==''){alert('沿線を選択してください。'); return false;}
	if(s==0 && document.entry.c_men_fr.selectedIndex > document.entry.c_men_to.selectedIndex){alert('面積条件の設定に誤りがあります。'); return false;}
	if(s==1 && document.entry.e_men_fr.selectedIndex > document.entry.e_men_to.selectedIndex){alert('面積条件の設定に誤りがあります。'); return false;}
	if(s==0 && document.entry.c_chin_fr.selectedIndex > document.entry.c_chin_to.selectedIndex && document.entry.c_chin_to.selectedIndex>0){alert('賃料条件の設定に誤りがあります。'); return false;}
	if(s==1 && document.entry.e_chin_fr.selectedIndex > document.entry.e_chin_to.selectedIndex && document.entry.e_chin_to.selectedIndex>0){alert('賃料条件の設定に誤りがあります。'); return false;}
	document.entry.kubun.value=s;
	document.entry.method='post';
	document.entry.target='_self';
	document.entry.action='bukkenlist.php';
	document.entry.submit();
}

function Change(){
	document.entry.change.value=1;
	document.entry.method='post';
	document.entry.target='_self';
	document.entry.action='bukkenlist.php';
	document.entry.submit();
}

function DeatilShow(b) {
	document.entry.bid.value=b;
	document.entry.method = 'post';
	document.entry.target='_blank';
	document.entry.action='bukkendetail.php';
	document.entry.submit();
}

function chk_form(){
	document.entry.method = 'post';
	document.entry.action = '/inquire.php';
}
//-->
