/* カスタマイズ用のJavaScriptコードをここに記述してください */ /* チェックボックス系 */ function SetCond(formObj){ var fmS = document.Selcond; if(fmS.cond1.checked == 1){ formObj.cond1.value = document.Selcond.cond1.value; document.getElementById("gpsfilter").value = "COL_36=1"; }else{ formObj.cond1.value = ""; document.getElementById("gpsfilter").value = ""; } } function SetCondGPS(){ var fmS = document.Selcond; if(fmS.cond1.checked == 1){ document.getElementById("gpsfilter").value = "COL_36=1"; document.formGPS.plfilter.value = "COL_36=1"; }else{ document.getElementById("gpsfilter").value = ""; document.formGPS.plfilter.value = ""; } } function cbcheck(c){ if(document.Selcond){ if(c){ document.Selcond.cbname.src = "./company/"+CID+"/img/on.png"; document.Selcond.cond1.checked = 1; cbflg = 0; } else { document.Selcond.cbname.src = "./company/"+CID+"/img/off.png"; document.Selcond.cond1.checked = 0; cbflg = 1; } } } function cb_toggle(f){ if(document.Selcond){ if(f==1){ document.Selcond.cbname.src = "./company/"+CID+"/img/on.png"; document.Selcond.cond1.checked = 1; cbflg = 0; } else { document.Selcond.cbname.src = "./company/"+CID+"/img/off.png"; document.Selcond.cond1.checked = 0; cbflg = 1; } } }