ARBITER.init('MAIN', ['datatables','datatables.api','layerpopup'], function(dom, arbi) { var publicObj; /** * ¿ÜºÎ¿¡¼­ ÂüÁ¶ ÇØ¾ß ÇÒ ÇÔ¼ö°¡ ÀÖ´Â °æ¿ì À̰÷¿¡ Á¤ÀÇ ÇϽʽÿÀ. * ex) arbi.get('MEMBER_LISTS').test(); */ publicObj = { }; function initialize() { initView(); attachEventHandler(); } function initView() { initCounselGuidePop(); } function attachEventHandler() { } function initCounselGuidePop() { var curDate = new Date(); var curDateFormatDay = curDate.getFullYear() + "" + ARBITER.util.leadingZeros(curDate.getMonth()+1,2) + "" + ARBITER.util.leadingZeros(curDate.getDate(),2); if (curDateFormatDay <= '20240209') { // if (NowDate >= '20231226090000' && NowDate <= '20231229190000') { if ($.cookie('counsel_today_close') != "yes") { var cw = screen.availWidth; //È­¸é ³ÐÀÌ var ch = screen.availHeight; //È­¸é ³ôÀÌ var sw = 620; //¶ç¿ï âÀÇ ³ÐÀÌ var sh = 790; //¶ç¿ï âÀÇ ³ôÀÌ var ml = (cw-sw)/2; //°¡¿îµ¥ ¶ç¿ì±âÀ§ÇÑ Ã¢ÀÇ xÀ§Ä¡ var mt = (ch-sh)/2; //°¡¿îµ¥ ¶ç¿ì±âÀ§ÇÑ Ã¢ÀÇ yÀ§Ä¡ var win = window.open('/main/popCounselGuide','counsel_popup','width='+sw+',height='+sh+',top='+mt+',left='+ml+',resizable=no,scrollbars=yes'); } } } // ÃʱâÈ­ ÇÔ¼ö ½ÇÇà initialize(); return publicObj; });