- $arbol = new HTML_ArbolDB($dbdata, '/MECON/images/arbol_noticias.gif');
- echo $arbol->toHTML();
- ?>
- </td>
- <td width='600'>
- <? include 'noticias.htm'?>
- </td>
- </tr>
-</table>
-</body>
+ $arbol = new HTML_ArbolDB($dbdata, 'NOTICIAS');
+
+ $titulares = new HTML_Titulares($grupo, $dias);
+ $noticias->addRow(array($arbol,$titulares));
+ $m->addStyleSheet($arbol->getCSS());
+ $m->addStyleSheet($titulares->getCSS());
+ $noticias->updateCellAttributes(0, 0, array('valign'=>'top', 'width'=>'160'));
+ $noticias->updateCellAttributes(0, 1, array('valign'=>'top', 'width'=>'600'));
+
+ $m->addBodyContent($noticias);
+ $m->display();
+?>