in pop_profile.asp on line #342 find this line of code:
strtag3 = partss(1)
and replace it with the following:
strtag3 = ""
for xmsn = 1 to ubound(partss)
if strtag3 <> "" then strtag3 = strtag3 & "."
strtag3 = strtag3 & partss(xmsn)
next
Then in pop_messengers.asp on line #144 find this line of code:
strtag3 = partss(1)
and replace it with the following:
strtag3 = ""
for xmsn = 1 to ubound(partss)
if strtag3 <> "" then strtag3 = strtag3 & "."
strtag3 = strtag3 & partss(xmsn)
next