// 이전글, 다음글이 필요한 카테고리 위치에 넣어둠 function data() { this.addArticle = addArticle; this.artIds = new Array(); this.artTitles = new Array(); this.artTimes = new Array(); this.addArticle("1349455", "2025학년도 학교통합지원과 맞춤형 통합지원 계획 안내", "2025.07.22"); } 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://gsycedu.sen.go.kr/CMS/official/official05/official05a/sgy_55a5/index.html"); }else{ location.replace("http://gsycedu.sen.go.kr/CMS/official/official05/official05a/sgy_55a5/index"+",1,list,"+nowPage+".html"); } }