﻿// 쿠키가 있나 찾습니다
function getCookie(name) { 
   var from_idx = document.cookie.indexOf(name+'='); 
   if (from_idx != -1) { 
      from_idx += name.length + 1 
      to_idx = document.cookie.indexOf(';', from_idx) 

      if (to_idx == -1) { 
            to_idx = document.cookie.length 
      } 
      return unescape(document.cookie.substring(from_idx, to_idx)) 
   } 
}
// 팝업창에서 만들어진 쿠키 Notice 의 값이 done 이 아니면(즉, 체크하지 않으면,) 
// 공지창 (new.htm) 을 띄웁니다

if ( getCookie( "KSNET_20100701_1" ) != "done" ) {
	notice_20100701_1Window  =  window.open('/popup/popup_20100701_1.html','notice20100701_1','toolbar=no,location=no,directory=no,status=no,menubar=no,scrollbars=auto,resizable=no,copyhistory=no,left=0, top=0, width=420,height=662');
//	notice_20100701_1Window  =  window.open('popup_20100701_1.html','notice20100701_1','toolbar=no,location=no,directory=no,status=no,menubar=no,scrollbars=auto,resizable=no,copyhistory=no,left=0, top=0, width=420,height=662');
	notice_20100701_1Window.opener = self;
}
