%@page contentType="text/html; charset=iso-8859-1" %>
<%
String lang = (request.getParameter("l") != null) ? (String)request.getParameter("l") : "en";
String from = (request.getParameter("f") != null) ? (String)request.getParameter("f") : "palermo";
%>
Sicilian Tourist Service
<%@include file="/include/jsp/top.jsp" %>
|
|
|
<%
if (lang.equals("it")) {
String titolo="Le escursioni";
out.println(titolo);
}else{
String titolo="The Excursions";
out.println(titolo);
}
%> |
|
|
|
 |
| |
FROM PALERMO
FROM CATANIA
FROM TAORMINA
|
<%
if (from.equals("palermo") && lang.equals("en")) {%>
<%@include file= "palermo_en.jsp"%>
<% }%>
<%
if (from.equals("palermo") && lang.equals("it")) {%>
<%@include file= "palermo_it.jsp"%>
<% }%>
<%
if (from.equals("catania") && lang.equals("en")) {%>
<%@include file= "catania_en.jsp"%>
<% }%>
<%
if (from.equals("catania") && lang.equals("it")) {%>
<%@include file= "catania_it.jsp"%>
<% }%>
<%
if (from.equals("taormina") && lang.equals("en")) {%>
<%@include file= "taormina_en.jsp"%>
<% }%>
<%
if (from.equals("taormina") && lang.equals("it")) {%>
<%@include file= "taormina_it.jsp"%>
<% }%>
Info
|
+39 091 361567 |
|
 |
<%@include file="/include/jsp/bottom.jsp" %>
|