<!--
        var Gwin = '';

        // »õ·Î¿î Ã¢ ¿­±â
        function new_win(htm,hs,wt,ht){
            if(typeof(wt) == 'undefined'){
                wt = 620;  // default width
                ht = 500;  // default height
            }

            wpty = 'width='+wt+',height='+ht+',resizble=1,scrollbars=1';

            Gclosed = (Gwin.closed && Gwin == '');

            if(!Gclosed)
                Gwin = window.open(htm+'#'+hs,'gwwin',wpty);

            if(Gwin.opener == '' || Gwin.opener == 'undefined')
                Gwin.opener = self;
        }
        
function new_win2(htm,hs,wt,ht){ // ½ºÅ©·Ñ ¾øÀ½
            if(typeof(wt) == 'undefined'){
                wt = 620;  // default width
                ht = 500;  // default height
            }

            wpty = 'width='+wt+',height='+ht+',resizble=0,scrollbars=0';

            Gclosed = (Gwin.closed && Gwin == '');

            if(!Gclosed)
                Gwin = window.open(htm+'#'+hs,'gwwin',wpty);

            if(Gwin.opener == '' || Gwin.opener == 'undefined')
                Gwin.opener = self;
        }
        
        
function urgent_win(htm, hs, wt, ht)
{
   if(typeof(wt) == 'undefined'){
        wt = 400;  // default width
        ht = 300;  // default height
    }

    wpty = 'width='+wt+',height='+ht+',resizble=0,scrollbars=0';


    if( getCookie("FLAG") !="A" )
    {
        if(navigator.appName.indexOf("Netscape") == -1)
            window.open(htm+'#'+hs,'gwwin',wpty);
        else
            window.open(htm+'#'+hs,'gwwin',wpty);
    }
}        
//-->
