var ZdcEmapGPSErrMsg="Getting Present location failed."; function ZdcEmapHttpRequestHtml(url, func, nowaitmsg, typ) { // if(!nowaitmsg) ZdcEmapReadOn();//読み込み中フラグon if(typ == undefined) typ = 1; //通信処理 var ZdcEmapHttpRequestObj = new ZdcEmapHttpRequest('UTF8', 'UTF8', 1); ZdcEmapHttpRequestObj.request(url, function(html,status) { if(status == 3) status = 0;//タイムアウトは無視 連続呼び出し時の動作が安定しないので if(status == 9) status = 0;//テンプレートが無い場合に対応 if(html == null) html = "";//nullは出さない if(status == 0) { func(html,status); } else { //エラー処理 func(html,status); } // ZdcEmapReadOff();//読み込み中フラグoff //},60000); mod 2012/09/10 Y.Matsukawa },60000,typ); } function ZdcEmapAfterLocError() { // mod 2022/12/06 M.date } function ZdcEmapSetCondToForm(formTo) { var formC = document.formCond; if (!formC) return true; var cond,chk; chk = formC.cond1; if (chk && chk.checked) { cond = document.createElement("input"); cond.setAttribute("type", "hidden"); cond.setAttribute("name", "cond1"); cond.setAttribute("value", "COL_77:1"); // mod 2022/12/06 M.date formTo.appendChild(cond); } }