and if you really want to remove the selectbox, remove this code in forum.asp starting at line 224:
<form action="<% =Request.ServerVariables("SCRIPT_NAME") & "?" & Request.Querystring %>" method="post" name="DaysFilter">
<select name="Days" onchange="javascript:setDays();">
<option value="0" <% if ndays = "0" then Response.Write(" SELECTED")%>>Show all topics</option>
<option value="-1" <% if ndays = "-1" then Response.Write(" SELECTED")%>>Show all open topics</option>
<option value="1" <% if ndays = "1" then Response.Write(" SELECTED")%>>Show topics from last day</option>
<option value="2" <% if ndays = "2" then Response.Write(" SELECTED")%>>Show topics from last 2 days</option>
<option value="5" <% if ndays = "5" then Response.Write(" SELECTED")%>>Show topics from last 5 days</option>
<option value="7" <% if ndays = "7" then Response.Write(" SELECTED")%>>Show topics from last 7 days</option>
<option value="14" <% if ndays = "14" then Response.Write(" SELECTED")%>>Show topics from last 14 days</option>
<option value="30" <% if ndays = "30" then Response.Write(" SELECTED")%>>Show topics from last 30 days</option>
<option value="60" <% if ndays = "60" then Response.Write(" SELECTED")%>>Show topics from last 60 days</option>
<option value="120" <% if ndays = "120" then Response.Write(" SELECTED")%>>Show topics from last 120 days</option>
<option value="365" <% if ndays = "365" then Response.Write(" SELECTED")%>>Show topics from the last year</option>
</select>
<input type="hidden" name="Cookie" value="1">
</form>
and replace it with a single
Make sure you still change the code in the previous reply !!
Pierre