// 이전글, 다음글이 필요한 카테고리 위치에 넣어둠 function data() { this.addArticle = addArticle; this.artIds = new Array(); this.artTitles = new Array(); this.artTimes = new Array(); this.addArticle("1341052", "중부학교통합지원센터 소식지 2024-5호", "2024.07.12"); this.addArticle("1340751", "중부학교통합지원센터 통통뉴스 2024-2호", "2024.06.26"); this.addArticle("1340561", "중부학교통합지원센터 소식지 2024-4호", "2024.06.14"); this.addArticle("1339970", "중부학교통합지원센터 소식지 2024-3호", "2024.05.16"); this.addArticle("1339357", "중부학교통합지원센터 통통뉴스 2024-1호", "2024.04.23"); this.addArticle("1339288", "중부학교통합지원센터 소식지 2024-2호", "2024.04.17"); this.addArticle("1338290", "중부학교통합지원센터 소식지 2024-1호", "2024.02.29"); this.addArticle("1335800", "제목 중부학교통합지원센터 소식지 2023-9호", "2023.12.11"); this.addArticle("1335365", "중부학교통합지원센터 소식지 2023-8호", "2023.11.09"); this.addArticle("1334591", "중부학교통합지원센터 소식지 2023-7호", "2023.10.06"); this.addArticle("1332950", "중부학교통합지원센터 소식지 2023-6호", "2023.09.11"); this.addArticle("1331774", "중부학교통합지원센터 소식지 2023-5호", "2023.08.17"); this.addArticle("1331225", "중부학교통합지원센터 소식지 2023-4호", "2023.07.07"); this.addArticle("1330743", "중부학교통합지원센터 소식지 2023-3호", "2023.06.05"); this.addArticle("1330308", "중부학교통합지원센터 소식지 2023-2호", "2023.05.03"); this.addArticle("1329823", "중부학교통합지원센터 소식지 2023-1호", "2023.04.06"); this.addArticle("1328700", "중부학교통합지원센터 소식지 2022-10호", "2023.02.16"); this.addArticle("1328698", "중부학교통합지원센터 소식지 2022-9호", "2023.02.16"); this.addArticle("1328697", "중부학교통합지원센터 소식지 2022-8호", "2023.02.16"); this.addArticle("1328696", "중부학교통합지원센터 소식지 2022-7호", "2023.02.16"); this.addArticle("1328695", "중부학교통합지원센터 소식지 2022-6호", "2023.02.16"); this.addArticle("1328694", "중부학교통합지원센터 소식지 2022-5호", "2023.02.16"); this.addArticle("1328693", "중부학교통합지원센터 소식지 2022-4호", "2023.02.16"); this.addArticle("1328692", "중부학교통합지원센터 소식지 2022-3호", "2023.02.16"); this.addArticle("1328690", "중부학교통합지원센터 소식지 2022-2호", "2023.02.16"); this.addArticle("1328689", "중부학교통합지원센터 소식지 2022-1호", "2023.02.16"); } 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://jbedu.sen.go.kr/CMS/school/school08/school0805/index.html"); }else{ location.replace("http://jbedu.sen.go.kr/CMS/school/school08/school0805/index"+",1,list,"+nowPage+".html"); } }