// 이전글, 다음글이 필요한 카테고리 위치에 넣어둠 function data() { this.addArticle = addArticle; this.artIds = new Array(); this.artTitles = new Array(); this.artTimes = new Array(); this.addArticle("1348466", "학원 및 교습소 안전관리 매뉴얼 ", "2025.05.30"); this.addArticle("1343993", "[신규설립] 학원(독서실) 신규 설립 등록 서식", "2024.11.05"); this.addArticle("1343992", "[설립·운영자] 학원(독서실) 설립·운영자 변경 서식", "2024.11.05"); this.addArticle("1343991", "[시설] 학원(독서실) 변경 서식(위치 이전/확장/축소 및 시설)", "2024.11.05"); this.addArticle("1343990", "[변경신고] 학원(독서실) 변경 서식(명칭, 교습과정, 종류, 법인임원 등) ", "2024.11.05"); this.addArticle("1343989", "[교습비] 학원 교습비 변경 신고 서식", "2024.11.05"); this.addArticle("1343985", "[강사] 학원 강사 채용/해임 통보 서식", "2024.11.05"); this.addArticle("1343984", "[휴원/폐원] 학원(독서실) 휴원/폐원 신고 서식", "2024.11.05"); this.addArticle("1343983", "[독서실] 독서실 열람시간 연장 승인 신청서", "2024.11.05"); this.addArticle("1343982", "[게시/보관] 학원(독서실) 게시 및 보관 서류 서식", "2024.11.05"); this.addArticle("1343949", "[민원-기타] 학원(독서실) 관련 기타 서식 모음", "2024.11.05"); } 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://dbedu.sen.go.kr/CMS/civilapp/civilapp02/civilapp0204/civilapp020408/index.html"); }else{ location.replace("http://dbedu.sen.go.kr/CMS/civilapp/civilapp02/civilapp0204/civilapp020408/index"+",1,list,"+nowPage+".html"); } }