// 이전글, 다음글이 필요한 카테고리 위치에 넣어둠 function data() { this.addArticle = addArticle; this.artIds = new Array(); this.artTitles = new Array(); this.artTimes = new Array(); this.addArticle("1354979", "2026 강남서초 학교통합지원 신청 안내", "2026.03.31"); this.addArticle("1353594", "2026년 지방공무원 대체직원(교육행정) 채용 공고", "2026.01.29"); this.addArticle("1353197", "서울대왕초등학교 2026학년도 기간제교원(영양) 채용 공고", "2026.01.09"); this.addArticle("1353196", "서울대왕초등학교 외 1개교 2026학년도 기간제교원(특수) 채용 공고", "2026.01.09"); this.addArticle("1353195", "서울영희초등학교 외 3개교 2026학년도 기간제교원(보건) 채용 공고", "2026.01.09"); this.addArticle("1353194", "봉은중학교 2026학년도 기간제교원(사회) 채용 공고", "2026.01.09"); this.addArticle("1353193", "봉은중학교 2026학년도 기간제교원(수학) 채용 공고", "2026.01.09"); this.addArticle("1352600", "교원결원대체(시간강사) 인력풀 모집 공고", "2025.12.01"); this.addArticle("1352599", "지방공무원 대체(행정/시설관리) 인력풀 모집 공고", "2025.12.01"); this.addArticle("1352336", "지방공무원 대체(행정, 시설관리) 인력풀 모집 공고", "2025.12.01"); this.addArticle("1352335", "교원결원대체(시간강사) 인력풀 모집 공고", "2025.12.01"); this.addArticle("1351799", "교원결원대체(시간강사) 인력풀 모집 공고", "2025.11.03"); this.addArticle("1351798", "지방공무원 결원대체 인력풀 모집 공고", "2025.11.03"); this.addArticle("1351386", "강남서초 학교통합지원 홍보자료 ", "2025.10.15"); this.addArticle("1351317", "2025학년도 2학기 교육공무직원 대체직원(교육실무사(늘봄)) 채용 공고", "2025.10.13"); this.addArticle("1350405", "강남서초 「학교통합지원 네이밍·로고 공모전」결과 알림 ", "2025.09.01"); this.addArticle("1350374", "강남서초 「학교통합지원 네이밍·로고 공모전」결과 발표 일정 변경 안내 ", "2025.08.29"); this.addArticle("1350143", "강남서초 「학교통합지원 네이밍·로고 공모전」", "2025.08.19"); this.addArticle("1349384", "2025년도 서울특별시교육청 소속 교육지원청 행정·시설대체 인력풀(Pool) 모집 공고", "2025.07.17"); this.addArticle("1348594", "2025년 보결담당 시간강사 인력풀 모집 공고", "2025.06.10"); this.addArticle("1340899", "2024년 행정·시설대체 인력풀 지원서류", "2025.07.17"); this.addArticle("1340898", "2024년 보결담당 시간강사 인력풀 지원서류", "2025.07.17"); this.addArticle("1326364", "2022년도 인력풀 개인정보 수집 이용 동의서", "2022.09.28"); this.addArticle("1325128", "2022년 보결담당 시간강사 인력풀 운영 안내", "2022.07.06"); this.addArticle("1325127", "2022년도 행정·시설대체 인력풀 운영 안내", "2022.07.06"); this.addArticle("1315871", " 보결담당 시간강사 인력풀 운영 안내(2020)", "2025.07.17"); this.addArticle("1304788", "보결담당 시간강사 인력풀 운영 안내(2019)", "2025.07.17"); this.addArticle("1304787", "보결담당 시간강사 인력풀 이용 서식(2019)", "2025.07.17"); this.addArticle("1304786", "행정대체 인력풀 운영 안내(2019)", "2025.07.17"); this.addArticle("1304785", "행정대체 인력풀 이용방법(2019)", "2025.07.17"); this.addArticle("1304784", "행정대체 인력풀 이용 서식(2019)", "2025.07.17"); this.addArticle("1304783", "보결 시간강사 인력풀 모집 공고문 및 제출 서식", "2025.07.17"); } function addArticle(id, title, time) { this.artIds.push(id); this.artTitles.push(title); this.artTimes.push(time); } function nowList(artIndex) { nowPage = Math.ceil((1 - artIndex+1) / 10); if (nowPage==1) { location.replace("http://gnscedu.sen.go.kr/CMS/openedu/openedu13/openedu139/index.html"); }else{ location.replace("http://gnscedu.sen.go.kr/CMS/openedu/openedu13/openedu139/index"+",1,list,"+nowPage+".html"); } }