	function getCookie(name) { 
		var Found = false 
		var start, end 
		var i = 0 

		// cookie ¹®ÀÚ¿­ ÀüÃ¼¸¦ °Ë»ö 
		while(i <= document.cookie.length) { 
			start = i 
			end = start + name.length 
			// name°ú µ¿ÀÏÇÑ ¹®ÀÚ°¡ ÀÖ´Ù¸é 
			if(document.cookie.substring(start, end) == name) { 
				Found = true 
				break 
			} 
			i++ 
		} 

		// name ¹®ÀÚ¿­À» cookie¿¡¼­ Ã£¾Ò´Ù¸é 
		if(Found == true) { 
			start = end + 1 
			end = document.cookie.indexOf(";", start) 
			// ¸¶Áö¸· ºÎºÐÀÌ¶ó´Â °ÍÀ» ÀÇ¹Ì(¸¶Áö¸·¿¡´Â ";"°¡ ¾ø´Ù) 
			if(end < start) 
				end = document.cookie.length 
				// name¿¡ ÇØ´çÇÏ´Â value°ªÀ» ÃßÃâÇÏ¿© ¸®ÅÏÇÑ´Ù. 
			return document.cookie.substring(start, end) 
		} 
		// Ã£Áö ¸øÇß´Ù¸é 
		return "" 
	}
	
	function popup(theURL,winName,features) { //v2.0
        var eventCookie=getCookie("idno"); 
        if (eventCookie != "no") 
			window.open('/popup/popup1.html','popup1','width=520,height=500,scrollbars=yes,resizable=no,left=20,top=50'); 
	}
	popup();

	function popup2(theURL,winName,features) { //v2.0
        var eventCookie=getCookie("idno2"); 
        if (eventCookie != "no") 
			window.open('/popup/popup2.html','popup2','width=520,height=500,scrollbars=yes,resizable=no,left=580,top=50'); 
	}
	popup2();