	function adm_js_set_cookie(name, val, expire) {
		var today = new Date();
		today.setDate(today.getDate() + expire);
		var cookie_txt = name + '=' + escape(val) + ';path=/;expires=' + today.toGMTString() + ';';
		document.cookie = cookie_txt;
	}

	function adm_js_get_cookie(name) {
		var name_of_cookie = name + '=';
		var x = 0;
		while(x <= document.cookie.length) {
			var y = (x + name_of_cookie.length);
			if(document.cookie.substring(x, y) == name_of_cookie) {
				if((end_of_cookie = document.cookie.indexOf(';', y)) == -1)
						end_of_cookie = document.cookie.length;
				return unescape(document.cookie.substring(y, end_of_cookie));
			}
			x = document.cookie.indexOf(' ', x) + 1;
			if(x == 0) 
				break;
		}
	}

	function adm_js_popup_recruit_notice_20090709() {
		if(adm_js_get_cookie('notice_popup') != 1) {
			window.open('/etc/recruit_notice_20090709.html', 'RECRUIT_NOTICE_20090709', 'width=400,height=170,toolbar=0,menubar=0,status=0');
		}
	}

	function adm_js_popup_recruit_notice_20091113() {
		if(adm_js_get_cookie('notice_popup') != 1) {
			window.open('/etc/recruit_notice_20091113.html', 'RECRUIT_NOTICE_20091113', 'width=400,height=300,toolbar=0,menubar=0,status=0');
		}
	}

	function adm_js_popup_recruit_notice_20100111() {
		if(adm_js_get_cookie('notice_popup') != 1) {
			window.open('/etc/recruit_notice_20100111.html', 'RECRUIT_NOTICE_20100111', 'width=400,height=350,toolbar=0,menubar=0,status=0');
		}
	}

	function adm_js_close_recruit_notice_20090709() {
		adm_js_set_cookie('notice_popup', '1', '864000');
		window.close();
	}
