
// ÀÌºÎºÐºÎÅÍ  ¼öÁ¤ÇÒ ÇÊ¿ä ¾ø½À´Ï´Ù. 
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 openPopup1(src, name) 
{ 
var noticeCookie=getCookie(name);
if (noticeCookie != "no") 

window.open(src,name,'width=640,height=500,top=50,left=150, top=30, left=0 ,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,toolbar=no,location=no'); 

} 

function openPopup2(src, name) 
{ 
var noticeCookie=getCookie(name);
if (noticeCookie != "no") 

window.open(src,name,'width=420,height=480,top=30,left=360, directories=no,status=no,menubar=no,scrollbars=no,resizable=no,toolbar=no,location=no' ); 

} 

//openPopup1("/pop/MUNOS.html","notice");  // Ã¹¹øÂ° ÀÎ¼ö´Â ¶ç¿ï ÆÄÀÏ µÎ¹øÂ°´Â Ã¢*ÄíÅ°ÀÌ¸§

//openPopup2("/pop/coach_5.html","news");  // ÄÚÄª¼¾ÅÍ ÀÌº¥Æ®

//openPopup2("/popup/pop_usa.html","news");  // ¹Ì±¹ »ç¸²ÀÌº¥Æ®


openPopup1("/movieplay/play.html","notice");  // Ã¹¹øÂ° ÀÎ¼ö´Â ¶ç¿ï ÆÄÀÏ µÎ¹øÂ°´Â Ã¢*ÄíÅ°ÀÌ¸§

