%@ page import="java.util.*, com.jazzhouston.user.*, com.jazzhouston.venue.*, com.jazzhouston.event.*, com.jazzhouston.*" %>
<% if (theyBe.getFullName()!=null && theyBe.getFullName().length()>0) { %>
<%=theyBe.getFullName()%>
<% } %>
<% if (theyBe.getLocalPlayerFlag()==1) { %>
Instruments:
<%
if (axes!=null)
{
int c=0;
while (axes.hasMoreElements() )
{
Instrument plays = (Instrument)axes.nextElement();
if (c!=0)
{
out.println(", ");
}
%>
<%=plays.getName()%>
<%
c++;
}
}
%>
<% if (theyBe.getAboutMe()!=null && theyBe.getAboutMe().length()>0) { %>
<%=theyBe.getAboutMeRE()%>
<% } else { %>
Sorry, no profile available.
<% } %>