 <!--
 /* ÇÏ·çµ¿¾È Ã¢¿­Áö ¾Ê±â ÄíÅ° */
 function GetCookie(NameCookie) {
        var i = document.cookie.indexOf( NameCookie+'=' );
        if (i != -1) {
                i += NameCookie.length + 1;
                NameEnd = document.cookie.indexOf(';', i);
                if (NameEnd == -1) {
                  NameEnd = document.cookie.length;
                }
                return  unescape(document.cookie.substring(i, NameEnd));
        } else {
          return "";
        }

 }
 function windowopen(NameCookie1,urlname,name,w, h)       {

     Cookievalue = GetCookie(NameCookie1);
    if (Cookievalue == "") {
     NameCookie = window.open(urlname,name,w, h);
     NameCookie.focus();

     var winl = (screen.width - w) ;
     var wint = (screen.height - h) * 0;
     winprops = 'top='+wint+',left='+winl+''
     win = window.open(urlname,name,w, h, winprops)

    }

}


 /* bora_pup1.htm¾È¿¡ ÇÏ·çµ¿¾È Ã¢¿­Áö ¾Ê±â Ã¼Å© ½ºÅ©¸³Æ® */
function setCookie( name, value, expiredays )
{
  var todayDate = new Date();
  todayDate.setDate( todayDate.getDate() + expiredays );
  document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}

function closeWin(cookiename)
{
  if ( document.forms[0].next_time.checked )    {
    setCookie( cookiename, "done" , 1);
    self.close();
    }
  else {
    self.close()
  }
}



function bora_pup() {
		//window.open('http://www.bora.net/news/event020301/index.html','width=800,height=500,top=0,left=0');
		//self.close();
		self.close();
            url = "http://www.webhard.co.kr/hotnnew/event020409/index.html";
            newWin=window.open(url,"newWin","directories=yes,resizable=yes,scrollbars=yes,location=yes,menubar=yes,width=800,height=600,left=0, top=0");
            if( newWin ) newWin.focus(); // ¿­¸°Ã¢ focus ¿Å±â±â

}


 //-->
