Curious to find out what each of these parameters do...
in the dosearch.php script....

Code
http://www.yourdomain.com/ubbthreads/dosearch.php?Cat=0&Forum=All_Forums&Words=&daterange=1&newertype=d&newerval=1&Limit=25&topic=1&fromsearch=1&bodyprev=1

Forum=All_Forums& - This is where you would choose All forums or insert a forum keyword
Words=& - empty results in all otherwise any word you are searching
daterange=1& this is how old the post is in days?
newertype=d& I am not sure what 'd' means I assume date? what are the other options.
newerval=1& Unclear what this is or what the other options are
Limit=25& - shows # of results
topic=1& - 1 shows post & replies, 2 Shows original posts only
fromsearch=1& - Not sure what this does
bodyprev=1 - 1 shows the body preview 0 turns it off.

I was thinking of something like this in your dosearch.tmpl

Code
FIND THIS
================
$tbopen
<tr>
<td class="tdheader">
{$ubbt_lang['SEARCH_RES']}: $headerwords $excluded
</td>
</tr>
$tbclose


REPLACE IT WITH THIS
=============
$tbopen
<tr>
<td class="tdheader">
{$ubbt_lang['SEARCH_RES']}: $headerwords $excluded
</td>
</tr>
<tr>
<td class="lighttable" align="center">

<INSERT YOUR ACTIVE TOPIC LINK HERE>
 ·
<INSERT YOUR ACTIVE TOPIC LINK HERE>
 ·
<INSERT YOUR ACTIVE TOPIC LINK HERE>
 ·
<INSERT YOUR ACTIVE TOPIC LINK HERE>
 ·

</td>
</tr>
$tbclose

The idea here is that if a user hits "active topics" they can change the options as to what is present - say toggle on/off the body, or toggle the display of posts & replies w/ posts only.

I could add all the links but I am not sure how to make the links toggle so if for example I am viewing the body part hitting the link w/ turn it off
and hitting the link again would turn it back on.