hyall,
this is a small piece of code that you can add to topic.asp to show the next and prev page when topic is more than 1 page long:
in the file topic.asp you will find near the bottom a routine named Paging().
in that sub place this code...
if cint(pge)<>1 then
response.write " [<a href='" & scriptname & "?whichpage=" & (cint(pge)-1) & "&topic_id=" & topic_id & "&ARCHIVE=" & ArchiveView & "'>«««</a>] "
end if
---just before the line below...---
for counter = 1 to maxpages
.......
next
^^^-and after this line place this---
if cint(pge)<>maxpages then
response.write " [<a href='" & scriptname & "?whichpage=" & (cint(pge)+1) & "&topic_id=" & topic_id & "&ARCHIVE=" & ArchiveView & "'>»»»</a>] "
end if
Cheers & Sagres,
Machado