\n"; echo '
  '.$name.'
'; } /* add a table row */ function add($sName, $shUrl = null, $sAlign = "left") { $oTableRow = new TableRow(); if($shUrl) { $oTableCell = new TableCell(" ". "$sName"); $oHighlightColor = new Color(0xe0, 0xe6, 0xff); $oInactiveColor = new Color(0xff, 0xff, 0xff); $oTableRowHighlight = new TableRowHighlight($oHighlightColor, $oInactiveColor); $oTableRowClick = new TableRowClick($shUrl); $oTableRowClick->SetHighlight($oTableRowHighlight); $oTableRow->SetRowClick($oTableRowClick); } else { $oTableCell = new TableCell(" $sName"); } $oTableCell->SetAlign($sAlign); $oTableCell->SetWidth("100%"); $oTableRow->SetClass("sidemenu"); $oTableRow->AddCell($oTableCell); echo $oTableRow->GetString(); } function addmisc($sStuff, $sAlign = "left") { echo " \n"; } function done($form = null) { echo '
 $sStuff
-

'; if ($form) echo "\n"; } } ?>