// 이전글, 다음글이 필요한 카테고리 위치에 넣어둠 function data() { this.addArticle = addArticle; this.artIds = new Array(); this.artTitles = new Array(); this.artTimes = new Array(); this.addArticle("1354225", "[안내] 2026 「통(通)하는 안전지기」 기타보조인력 역량강화 연수 실시", "2026.03.03"); this.addArticle("1354176", "2026 강서양천 School Link 통(通)큰지원 사업 안내", "2026.02.27"); this.addArticle("1353781", "기간제근로자 채용서류 원클릭 출력 프로그램(ver.2.0)", "2026.02.05"); 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"); } }