function getCookie(Name) {
	  var search = Name + "="
	  if (document.cookie.length > 0) { // ÄíÅ°°¡ ¼³Á¤µÇ¾î ÀÖ´Ù¸é
		    offset = document.cookie.indexOf(search)
		    
		    if (offset != -1) { // ÄíÅ°°¡ Á¸ÀçÇÏ¸é
			    offset += search.length
			    end = document.cookie.indexOf(";", offset)
		
			      // ÄíÅ° °ªÀÇ ¸¶Áö¸· À§Ä¡ ÀÎµ¦½º ¹øÈ£ ¼³Á¤
			    if (end == -1)
			    	end = document.cookie.length
			    return unescape(document.cookie.substring(offset, end))
		    }
	  }
}



function openNotice(win_str) {
  if (getCookie(win_str) != "deny") {
  	var Notice_win;
    	Notice_win = window.open("/common/pop_up/popup.jsp", win_str, "width=350,height=400,scrollbars=no, left=0, top=0");
    	Notice_win.focus();
  }
}

