I changed the globe icon to a custom icon for the reply URL mod to match the standard forum icons and sizes so it's more uniform and professional-appearing:
1. Copy and upload the icon to your directory:
2. Open TOPIC.asp and find this text:
'##### Reply URL #####
Response.Write " <a href=""Javascript:ReplyURL('" & strForumUrl & "topic.asp?TOPIC_ID=" & Topic_ID & "#" & Reply_ReplyID & "');"">" & getCurrentIcon(strIconURL,"Copy this URL to Link to this Reply","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
'##### Reply URL #####
Replace with this:
'##### Reply URL #####
Response.Write " <a href=""Javascript:ReplyURL('" & strForumUrl & "topic.asp?TOPIC_ID=" & Topic_ID & "#" & Reply_ReplyID & "');"">" & getCurrentIcon(strIconReplyURL,"Copy this URL to Link to this Reply","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
'##### Reply URL #####
3. Open inc_iconfiles.asp and paste the following text after around line 171 depending on what other icons you may have already added:
'################## Reply URL MoD ####################
Const strIconReplyUrl = "icon_reply_url.gif|15|15"
'############### Reply URL MoD End ###################