/* カスタマイズ用のJavaScriptコードをここに記述してください */ /* 絞り込みチェックボックス表示制御 */ function Outshibori(){ var fm = document.ZdcEmapCondForm; if (fm.cond1) { /* 代理店(0)かすべて(3)の場合表示 */ if( fm.cond1.selectedIndex == 0 || fm.cond1.selectedIndex == 3 ){ document.getElementById("shibori1").style.display = ""; document.getElementById("shibori2").style.display = ""; document.getElementById("shibori3").style.display = ""; } else { document.getElementById("shibori1").style.display = "none"; document.getElementById("shibori2").style.display = "none"; document.getElementById("shibori3").style.display = "none"; } fm.cond2.checked = false; fm.cond3.checked = false; } }