function notice_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 ( notice_getCookie( "popup" ) != "done" )
{
        window.open('popup/20061017.html','pop','width=575, height=485, directories=0, menubar=0, fullscreen=0, resizable=0, scrollbars=0, status=0, toolbar=0, left=0, top=0'); // °øÁöÃ¢ ÆË¾÷
}

//**************************************************************
// ÃÖ±Ù ±Û ¸µÅ©¸¦ »õÃ¢¿¡¼­ ¿­±â À§ÇÑ ÇÔ¼ö ÁöÁ¤ (2009.09.15 JSH)
//**************************************************************

function linkopen(urlstring)
{
	if (urlstring ==3) {
		linkname = "menu061.html"
                wintitle = "»ç¶ûÇØ"
	}
	open(linkname, wintitle, 'marginwidth=0,marginheight=0,topmargin=0,leftmargin=0,border=0,directories=no,status=no,menubar=no,scrollbars=auto,resizable=no');
}