<%
for (int i = 0; i < SEPT_DESTINATIONS.length; i++) {
Document document = getDestinationXML(request, SEPT_DESTINATIONS[i]);
Element docElem = document.getDocumentElement();
String destinationName = docElem.getAttribute("name");
%>
|
<%= destinationName %> -
details |
<%= SECTION_SPACER %>
<%
}
%>
|
<%
for (int i = 0; i < OCT_DESTINATIONS.length; i++) {
Document document = getDestinationXML(request, OCT_DESTINATIONS[i]);
Element docElem = document.getDocumentElement();
String destinationName = docElem.getAttribute("name");
%>
|
<%= destinationName %> -
details |
<%= SECTION_SPACER %>
<%
}
%>
|