#
# call mikes function which take certain html tags
# and puts a <BR> in front of them
# so they display at the begining of the line
# in real life i would have included this routine
# in line but just used it here as an example of 
# how to use the require function
#
# second note because this code is via a require()
# we cant pass it variable defined via my xxx;
# because it wont see them.
#
$content_html=mikes_fix_html($content_html);
#
# cool. return a 1 so the caller continues working
#
1;