- $colspan = 2;
- }
- else {
- $colspan = 1;
- }
-
- //Agrego el titulo
- $row = array
- ($this->_armarEncabezado($titulo.$this->_configuracion['subtitulo']));
- $this->_tabla->addRow($row,'align="left" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
- $imagen = new MECON_HTML_Image('/MECON/images/general_linea2.gif',
- str_repeat('-', 108), array('border' => 0, 'align' => 'center'));
- $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center" colspan="'.$colspan.'"');
-
- //Agrego si corresponde el espacio al inicio
- if ($this->_configuracion['espacios']) {
- $row = array (' ');
- $this->_tabla->addRow($row,'align="left" bgcolor="#FFFFFF" colspan="'.$colspan.'"');
- }
- //
-
- //Veo si debo cargar el menu horizontal
- $row = array();
- $tmp = '';
- if ($menu) {
- if (is_object($menu)) {
- if (method_exists($menu,'toHtml')) {
- $tmp.=$menu->toHtml();
+ $MENUVERTICAL = new HTML_Table ('width="760" align="left"');
+ $cuerpo = '';
+ if (is_array($body)) {
+ if ($this->_configuracion['espacios']) {
+ $cuerpo.= ' <BR>';