
function getCookie_kook( name ){
    var nameOfCookie = name + "=";

    var x = 0;
    while ( x <= document.cookie.length ) {
        var y = (x+nameOfCookie.length);
        if ( document.cookie.substring( x, y ) == nameOfCookie ) {
            if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 )
                endOfCookie = document.cookie.length;
            return unescape( document.cookie.substring( y, endOfCookie ) );
        }
        x = document.cookie.indexOf( " ", x ) + 1;
        if ( x == 0 )
            break;
    }
    return ;
}


//팝업창
function eventPopUp() {

 if(getCookie_kook("ccc") != "done") {
        window.open('/popup/popup.html','ccc','status=no, scrollbars=no, width=435,height=600, top=0, left=0');
 }
 if(getCookie_kook("award") != "done") {
        window.open('/popup/popup2.html','aaa','status=no, scrollbars=no, width=393,height=440, top=0, left=438');
 }
//팝업창-이벤트_100311
/*

   //팝업창-이벤트_100311
 if(getCookie_kook("event_zero") != "done") {
        window.open('/popup/20100811_pop.asp','event_zero','status=no, scrollbars=no, width=695,height=375, top=0, left=0');

 }
*/
 //국순당CF
 /*
  if(getCookie_kook("cf") != "done") {
      window.open('/popup/popup_cf.asp','cf','status=no, scrollbars=no, width=438,height=618, top=0, left=400');

  }
*/



  /*
  //팝업창-이력관리
  if(getCookie_kook("ksdb") != "done") {
      winopen = window.open('/popup/popup_profile2.html','profile','status=no, scrollbars=no, width=644,height=520, top=0, left=330');
      winopen.focus();
  }
  */
}