File topic.asp
Find the following statments (Lines 428-432)
if Request.QueryString("SearchTerms") <> "" then
Response.Write SearchHiLite(ChkString(Topic_Subject,"title"))
else
Response.Write ChkString(Topic_Subject,"title")
end if
Modify as below
if Request.QueryString("SearchTerms") <> "" then
Response.Write SearchHiLite(ChkString(Topic_Subject,"title"))
else
Response.Write ("<STRONG>" & ChkString(Topic_Subject,"title") & "</STRONG>")
end if