Richard -
To fix the error that @tomic found I did the following.
In inc_func_common.asp (function chkString) after line 377 insert the following.
Case "imagetag"
fString = replace(fString,"""","")
fString = replace(fString,"'","")
chkString = fString
exit function
Then in topic.asp (Sub Topic_nav()) change:
"Previous Topic: " & chkString(rsPrevTopic("T_SUBJECT"),"display")
to"Previous Topic: " & chkString(rsPrevTopic("T_SUBJECT"),"imagetag")
and also change:
"Next Topic: " & chkString(rsNextTopic("T_SUBJECT"),"display")
to
"Next Topic: " & chkString(rsNextTopic("T_SUBJECT"),"imagetag")