// JavaScript Document
/*******************************************************************************
	ÆË¾÷Ã¢ °ü·Ã
*******************************************************************************/
function getCookie(Name) {
	var search = Name + "="
	if (document.cookie.length > 0) { // ÄíÅ°°¡ ¼³Á¤µÇ¾î ÀÖ´Ù¸é
		offset = document.cookie.indexOf(search)
		if (offset != -1) { // ÄíÅ°°¡ Á¸ÀçÇÏ¸é
			offset += search.length // set index of beginning of value
			end = document.cookie.indexOf(";", offset) // ÄíÅ° °ªÀÇ ¸¶Áö¸· À§Ä¡ ÀÎµ¦½º ¹øÈ£ ¼³Á¤
			if (end == -1)
			end = document.cookie.length
			return unescape(document.cookie.substring(offset, end))
		}
	}
}

function openNotice(URL,title,features) {
	if(getCookie(title)!="done"){//ÆË¾÷Ã¢ Å¸ÀÌÆ²ÀÌ ÄíÅ°¿¡ ¾øÀ¸¸é
		var popup = window.open(URL,title,features); //À©µµ¿ÀÇÂ
		if( navigator.appName.substring(0,8) == "Netscape" ) { popup.location = URL; } 
	}
}
