
function change(form) {
    if (form.url.selectedIndex !=0)
        parent.location = form.url.options[form.url.selectedIndex].value
    }

function setCookie( name, value, expiredays ){
    var todayDate = new Date();
        todayDate.setDate( todayDate.getDate() + expiredays );
        document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}

function getCookie( 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 "";
}

// 임상 사례 모임 공지 [팝업]

 if ( getCookie( "Notice1" ) != "done" ) {
   noticeWindowtwo  =  window.open('http://www.kapc.or.kr/popup_20120109.html','notice1','left=480, top=10, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500 height=730');
   noticeWindowtwo.opener = self;
   }

// [팝업]

  if ( getCookie( "Notice2" ) != "done" ) {
 noticeWindowtwo  =  window.open('http://www.kapc.or.kr/popup_20120204.html','notice2','left=480, top=200, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=400 height=130');
 noticeWindowtwo.opener = self;
   }

// 이메일 문의 받습니다. [팝업]

    if ( getCookie( "Notice3" ) != "done" ) {
   noticeWindowtwo  =  window.open('http://www.kapc.or.kr/popup_20100821.html','notice3','left=480, top=30, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=350 height=130');
   noticeWindowtwo.opener = self;
   }

// 소식지

   if ( getCookie( "Notice4" ) != "done" ) {
   noticeWindowtwo  =  window.open('http://www.kapc.or.kr/popup_20120202.html','notice4','left=10, top=10, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=650 height=983');
   noticeWindowtwo.opener = self;
   }
