add(new PageLinkPanel("pageLinkPanel", new XmlSectionModel(currentSection), mSection));
// Previous & Next Links
int currentPageNum = ISIApplication.get().getStudentContent().getLabelIndex(ISIXmlSection.SectionType.PAGE, currentPage);
add(new PageNumberLink("previousPage", currentPageNum-1));
add(new PageNumberLink("nextPage", currentPageNum+1));
add(new Label("sectionTitle", currentSection.getTitle()));
// If this is a student then add the checkbox for a student. If this is a teacher then add the checkbox for the teacher
if (!teacher) {