// 팝업창을 띄우기 원하는 페이지에 이 스크립트를 삽입해야 합니다.

window.onload = function() {
	popup();
};

function popup() {
	var eventCookie = getCookie("popupEnabled");

	if (eventCookie != "no") {
		window.open(
			"popup/popup_01.html",
			"pop",
			"left=0, top=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=400, height=566"
		);

		window.open(
			"popup/popup_02.html",
			"pop2",
			"left=410, top=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=400, height=566"
		);
	}
};

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 "";
};
