JohnBaek
7/28/2016 - 5:10 AM

JS_PopupSetCookies

JS_PopupSetCookies

	    function setCookiemain(name, value, expiredays) {
	        var todayDate = new Date();
	        todayDate.setDate(todayDate.getDate() + 1);
	        document.cookie = name + "=" + escape(value) + "; path=/; expires=" + todayDate.toGMTString() + ";";
	    }
	    function toDays() {
	        if (confirm("오늘 하루 그만 보기를 적용 하시겠습니까?")) {
	            setCookiemain("wia_intro20141002", "ok");
	            location.href = "/Home/Home.aspx";
	        }
	    }