Open inc_top.asp and go all the way down. There you'll find a sub called sub sForumNavigation(). You can add you own link by adding this:
if mlev > 0 then
Response.Write " <a href=""#"" onClick=""yourjavascriptopener""><acronym title=""Play tetris!!"">Tetris</acronym></a>" & vbNewline & _
" |" & vbNewline
end if
Add this below the following code:
Response.Write " <a href=""" & strHomeURL & """><acronym title=""Homepage"">Home</acronym></a>" & vbNewline & _
" |" & vbNewline
Don't forget to include the correct JavaScript onClick function to open the window, and perhaps you want to change the alt text for the link too.
Hope this helps.
Roland