Find the following code (approx. lines 765-771):
'#######Avatar Start########
if StrShowAvatar = "1" then
if not Reply_MemberAvatar = "" then
Response.Write "<br /><img width=""" & Reply_MemberAvatarW & """ height=""" & Reply_MemberAvatarH & """ src='" & Reply_MemberAvatar & "'><br />"
end if
end if
'#######Avatar End##########
and replace it with the following code:
'#######Avatar Start########
if StrShowAvatar = "1" then
if not Reply_MemberAvatar = "" then
Response.Write "<br /><a href=""pop_profile.asp?mode=display&id=" & Reply_MemberID & """><img width=""" & Reply_MemberAvatarW & """ height=""" & Reply_MemberAvatarH & """ src='" & Reply_MemberAvatar & "'></a><br />"[/red]
end if
end if
'#######Avatar End##########
Now find the following code (approx. lines 985-991):
'#######Avatar Start########
if StrShowAvatar = "1" then
if not Member_Avatar = "" then
Response.Write "<br /><img width=""" & Member_AvatarW & """ height=""" & Member_AvatarH & """ src='" & Member_Avatar & "'><br />"
end if
end if
'#######Avatar End##########
and replace it with the following code:
'#######Avatar Start########
if StrShowAvatar = "1" then
if not Member_Avatar = "" then
Response.Write "<br /><a href=""pop_profile.asp?mode=display&id=" & TMember_ID & """><img width=""" & Member_AvatarW & """ height=""" & Member_AvatarH & """ src='" & Member_Avatar & "'></a><br />"
end if
end if
'#######Avatar End##########