Just do the following:
inc_iconfiles.asp
find this code (approx. line 152):
Const strIconYahoo = "icon_yahoo.gif|16|15"
add this code right after it:
Const strIconYourIcon = "icon.gif|ww|hh"
icon.gif: file name of the image
ww: image width
hh: image height
example:
Const strIconRotflmao = "icon_rotflmao.gif|15|15"
inc_func_common.asp
find this code (approx. line 166)
function Smile(fString)
add this code after it:
fString = replace(fString, "[YourCode]", getCurrentIcon(strIconYourIcon,"","align=""middle"""))
example:
fString = replace(fString, "[r]", getCurrentIcon(strIconRotflmao,"","align=""middle"""))
(I've taken the example from the posts above) <