This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to: Free Software Foundation, Inc. 59 Temple Place - Suite 330 Boston, MA 02111-1307, USA. */ have ('table'); /* tableBoxHeader Begin a bordered table */ function tableBoxHeader ($bgColor, $borderColor) { echo '' . ' ' . ' ' . ' ' . '
' . ' '; } /* tableBoxFooter Finish an opened bordered table */ function tableBoxFooter () { echo '
' . '
'; } /* tableHeader Begin an unbordered table */ function tableHeader ($width, $bgColor) { echo ''; } /* tableFooter Close an unbordered table */ function tableFooter () { echo '
'; } /* */ function tableColumnStart ($align, $colSpan) { echo ''; } /* */ function tableColumnEnd () { echo ''; } /* */ function tableRowStart ($vAlign) { echo ''; } /* */ function tableRowEnd () { echo ''; } /* tableSpacer Display a scaled transparent spacer image inside a table heading */ function tableSpacer ($width, $height, $cols, $bgColor) { echo '' . ' ' . ''; } /* tableTitle Display a colored title in a BoxTable. */ function tableTitle ($name, $cols, $bgColor) { echo ' ' . ' ' . ' ' . $name . '' . ' ' . ' '; } ?>