function custOpenGdlg() { var dlg = document.getElementById("cust_gdlg_dlg"); if (!dlg) return; dlg.style.display = "block"; dlg.style.height = (document.body.clientHeight+20)+"px"; } function custCloseGdlg() { var dlg = document.getElementById("cust_gdlg_dlg"); if (!dlg) return; var form = document.formCond; if (form) form.reset(); dlg.style.display = "none"; } function NMapNoticeCloseGdlg() { $("#NMapNotice").fadeOut("slow"); }