﻿	function show(object) {
		if (document.layers && document.layers[object] != null)
			document.layers[object].visibility = 'visible';
		else if (document.all)
			document.all[object].style.visibility = 'visible';
	}
	function hide(object) {
		if (document.layers && document.layers[object] != null)
			document.layers[object].visibility = 'hidden';
		else if (document.all)
			document.all[object].style.visibility = 'hidden';
	}
	
	//地図から検索
	function fMap(id) {
		document.frmMap.action="/dp/SAPAMap";
		document.frmMap.initIC.value = id;
		document.frmMap.submit();
	}
	//路線から検索
	function fRoute(id) {
		document.frmMap.action="/dp/SAPARoad";
		document.frmMap.roadAreaIndex.value = id;
		document.frmMap.submit();
	}

	