<!--
//
// °´Ã¼ »ý¼º½Ã °øÁö Å¸ÀÔÀ» ¼³Á¤ ÇÒ ¼ö ÀÖ°Ô ÇØ¾ß ÇÔ.
// ÃÊ±âÈ­½Ã ·¹ÀÌ¾î(Ã¢)ÀÇ À§Ä¡¸¦ °áÁ¤ÇÏ´Â ºÎºÐÀÌ ÇÊ¿ä.
//

/*
@ param object id
*/
function NoticePopup(e)
{
    this.popupObj   = document.getElementById(e);
    this.cookieName = e;
    this.init();
}
NoticePopup.prototype.init = function()
{
    if (Cookie.get(this.cookieName) !== 'off')
    {
        this.popupObj.style.display = 'block';
    }
}
/*
@ param bool
*/
NoticePopup.prototype.close = function(b)
{
    if (b == true) Cookie.set(this.cookieName, 'off',  1);
    this.popupObj.style.display = 'none';
}
//-->
