This is a little MOD that has been extremely well received on my board. What it does is show
instead of the date if the date is today. Members find that it makes it far easier to locate what has changed on the board.
function chkDateT(fDate,separator,fTime)
if left(fDate,8) = left(DateToStr(strForumTimeAdjust),8) then
chkDateT = "<B>* Today *</B>"
if fTime then
chkDateT = chkDateT & separator & chkTime(fDate)
end if
else
chkDateT = chkDate(fDate,separator,fTime)
end if
end function