im_table_with_title

one of the documented procedures in this installation of the ACS
Usage:
im_table_with_title   title   body
What it does:
Returns a two row table with background colors
Defined in: /web/philip/tcl/intranet-defs.tcl

Source code:


    return "
<table width=100% cellpadding=2 cellspacing=2 border=0>
  <tr bgcolor=\"[ad_parameter TableColorHeader intranet white]\">
    <td><b>[ad_partner_default_font "size=-1"]$title</font></b></td>
  </tr>
  <tr bgcolor=\"[ad_parameter TableColorOdd intranet white]\">
    <td>[ad_partner_default_font "size=-1"]$body</font></td>
  </tr>
</table>
"


philg@mit.edu