near line 347 of the 'default.asp' page you will see the following:
'Active Topics Links
strStatusBarTools = strStatusBarTools & " <img src=""" & strImagePath & "active_topics." & strForumImageType & """ alt=""" & strTxtActiveTopics & """ title=""" & strTxtActiveTopics & """ style=""vertical-align: text-bottom"" /> <a href=""active_topics.asp" & strQsSID1 & """>" & strTxtActiveTopics & "</a> "
strStatusBarTools = strStatusBarTools & " <img src=""" & strImagePath & "unanswered_topics." & strForumImageType & """ alt=""" & strTxtUnAnsweredTopics & """ title=""" & strTxtUnAnsweredTopics & """ style=""vertical-align: text-bottom"" /> <a href=""active_topics.asp?UA=Y" & strQsSID2 & """>" & strTxtUnAnsweredTopics & "</a> " |
just add another line like so (just edit the part in red)
'Active Topics Links
strStatusBarTools = strStatusBarTools & " <img src=""" & strImagePath & "active_topics." & strForumImageType & """ alt=""" & strTxtActiveTopics & """ title=""" & strTxtActiveTopics & """ style=""vertical-align: text-bottom"" /> <a href=""active_topics.asp" & strQsSID1 & """>" & strTxtActiveTopics & "</a> "
strStatusBarTools = strStatusBarTools & " <img src=""" & strImagePath & "unanswered_topics." & strForumImageType & """ alt=""" & strTxtUnAnsweredTopics & """ title=""" & strTxtUnAnsweredTopics & """ style=""vertical-align: text-bottom"" /> <a href=""active_topics.asp?UA=Y" & strQsSID2 & """>" & strTxtUnAnsweredTopics & "</a> " strStatusBarTools = strStatusBarTools &
" <img src=""" & strImagePath &
"chatroom." & strForumImageType & """ alt=""Chat Room"" title=""Chat Room"" style=""vertical-align: text-bottom"" /> <a
href=""chatroom.asp"">Chat Room</a> " |
The parts in green are the parts you will need to edit.
the first one is the name of the icon image that will be used next to the link,
the 2nd and 3rd are just the name, can leave this if you want,
4th is the link to the forum, i suspect you will want to change this to a javascript popup,
and 5th is the text that will display for the link, as with 2nd and 3rd, can leave this.