//ÆË¾÷Ã¢ °ü¸®ÇÏ±â
function popup_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 "";
}

//12¿ù 12ÀÏ ÀÔÇÐÃë¼Ò¿Í °ü·ÃµÈ »çÇ× °øÁö 
/****************************************************************************************************
'popup_1212'´Â ÆË¾÷Ã¢ÀÇ ID¿Í °°Àº ¿ªÇÒÀ» ÇÕ´Ï´Ù. 	
¿À´ÃÀº ±×¸¸º¸±â. ¸¦ Ã¼Å©Çß´ÂÁö ¿©ºÎ¸¦ ÆÄ¾ÇÇÏ´Â ID°ªÀÌ µÇ¾îÁÝ´Ï´Ù. 

ÆË¾÷Ãß°¡½Ã¿¡´Â ÀÌ ºÎºÐÀ» ¼öÁ¤ÇÏ½Ã¸é µË´Ï´Ù. 

!!!!!NOTICE
LINE 32¿Í LINE 35ÀÇ 'popup_1212'°ªÀº µ¿ÀÏÇÏ°Ô º¯°æÇØ ÁÖ¼Å¾ß ÇÕ´Ï´Ù. 

****************************************************************************************************/
//if ( popup_getCookie( 'pop_20060225' ) != 'done' )
//{
//url="/kor/popup/popup20060225/pop_20060225.htm";
//window.open(url,'pop_20060225','top=0,left=0,width=400,height=500,scrollbars=no,location=no');
//}

//ÄíÅ°°ª ¼³Á¤ÇÏ±â
function popup_setCookie( name, value, expiredays )  {
        var todayDate = new Date();
        todayDate.setDate( todayDate.getDate() + expiredays );
        document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}