﻿// JScript 파일

if (GetPopCookie("patch0811") != '1') {
    ViewPopup();
    try 
    {
        window.setTimeout("FocusPopup()",1000);
    }
    catch(e) 
    { }
}

function GetPopCookie( 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 FocusPopup()
{
    try
    {
        wndPop.focus();
    }
    catch(e)
    { }
}

function ViewPopup()
{ 
    //document.getElementById("notifyLayer").style.display = "block";  
    //wndPop = window.open("./Popup/Chuseok2010/Chuseok2010.html", "", "width=348,height=474,left=20,top=20,toolbar=no,status=no,scrollbars=no,resizable=no");
    //wndPop = window.open("./Popup/patch0804/Default.htm","patch0804","width=570,height=739,left=20,top=20,toolbar=no,status=no,scrollbars=no,resizable=yes");
	wndPop = window.open("../Popup/patch0811/Default.htm","patch0811","width=626,height=739,left=20,top=20,toolbar=no,status=no,scrollbars=yes,resizable=yes");
}
