// µÎ°³ ÆË¾÷Ã¢ ¶ç¿ì±â »ùÇÃ 1

function getCookie(name) { 
var Found = false 
var start, end 
var i = 0 
 
while(i <= document.cookie.length) { 
start = i 
end = start + name.length 
 
if(document.cookie.substring(start, end) == name) { 
Found = true 
break 
} 
i++ 
} 
 
if(Found == true) { 
start = end + 1 
end = document.cookie.indexOf(";", start) 
if(end < start) 
end = document.cookie.length 
return document.cookie.substring(start, end) 
} 
return "" 
}
 
function openPopup() 
{ 

//var noticeCookie2=getCookie("CookieName1");
//if (noticeCookie2 != "no") 
//window.open('/popup/20080125.html','popup1','width=600,height=766,top=0,left=0,scrollbars=no');

//var noticeCookie2=getCookie("CookieName2");
//if (noticeCookie2 != "no") 
//window.open('/popup/20080219.html','popup2','width=400,height=241,top=0,left=610,scrollbars=no');

//var noticeCookie2=getCookie("CookieName3");
//if (noticeCookie2 != "no") 
//window.open('/popup/20070724_c.html','popup3','width=516,height=500,top=0,left=525,scrollbars=yes');

} 
openPopup();
