%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page trimDirectiveWhitespaces="true" %>
<%@ page import="org.crosswire.community.projects.ntmss.data.Institution" %>
<%
int instID = -1; try {instID = Integer.parseInt(request.getParameter("instID"));} catch (Exception e){}
if (instID > -1) {
response.setContentType("text/xml");
Institution inst = Institution.getInstitution(instID);
if (inst != null) {
%>
<%= inst.toFormattedXML() %>
<%
}
else {
out.print("
Retrieve detailed information about an institute
| instID | id of the institute to retrieve |