%@ include file="page_header.inc" %>
Red Mountain Chamber Orchestra Homepage
<%@ include file="page_body.inc" %>
<%
Season season = null;
try
{
season = new SeasonDAO().getSeasonByNumber(Integer.parseInt(currentSeasonNumber));
}
catch(SeasonNotFoundException e)
{
%>
No data located for Season <%=currentSeasonNumber%>
return;
<%
}
String homepage = season.getHomepage();
if(homepage.length() == 0)
{
%>
Stay Tuned - Information for Season <%=currentSeasonNumber%> is coming soon!
<%
}
else
{
%>
<%=homepage%>
<%
}
%>
<%@ include file="page_footer.inc" %>