//-------------------------------------------------------------------
//  °øÁö»çÇ×(popup)   :TPLindex.html
//  ÀÛ¼ºÀÚ            : ±èÁ¤ÈÆ
//  ÀÛ¼ºÀÏ            : 2002-06-24 9:49¿ÀÈÄ
//  ³»¿ë              : ÀÌÃ¢Àº ´Ù½Ã´Â ¶ç¿ìÁö ¾ÊÀ½ ÄíÅ° Á¤º¸ °¡Á®¿À±â
//------------------------------------------------------------------
//  ¼öÁ¤ÀÚ            : ÇÑÈ£¿¬
//  ¼öÁ¤ÀÏ            : 2002-06-30 4:19¿ÀÈÄ
//  ³»¿ë              : °øÁö ¼³Á¤¿¡ µû¶ó ÀÚµ¿ ÆË¾÷ ¶ç¿ì±â ¼³Á¤
//--------------------------------------------------------------------
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 "";
}

function openNotice(notice_nm, srno, leftSize, topSize) {
	//alert(notice_nm);
	//alert(srno);

    if ( getCookie( notice_nm ) != "done" )
    {
            //È­¸é Ã³À½ ³ª¿Ã¶§ Ã³¸®ÇÏ´Â popup window Ã³¸®
            notice_nm  =  window.open("/Popup/notice_popup.asp?srno="+srno, notice_nm, "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=400 ,height=390,left=" +leftSize+",top="+ topSize);

    }
}

function MtPopBoatd(notice_nm, gubun, srno) {
	//alert(notice_nm);
	//alert(srno);

    if ( getCookie( notice_nm ) != "done" )
    {
            //È­¸é Ã³À½ ³ª¿Ã¶§ Ã³¸®ÇÏ´Â popup window Ã³¸®
            notice_nm  =  window.open("/MtPopBoard/popup.asp?srno="+srno+"&gubun="+gubun, notice_nm, "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=400 ,height=350");

    }
}