%
String table_style = "classic";
String cookieName = "DUCCtable_style";
String cookieValue = null;
Cookie cookie = null;
Cookie cookies [] = request.getCookies ();
if (cookies != null)
{
for (int i = 0; i < cookies.length; i++)
{
if (cookies [i].getName().equals (cookieName))
{
cookie = cookies[i];
cookieValue = cookie.getValue();
if(cookieValue != null) {
table_style = cookieValue;
}
break;
}
}
}
%>
<%
if (table_style.equals("scroll")) {
%>
<%
}
%>
<%
if (table_style.equals("classic")) {
%>
<%
}
%>