- $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');
+
+ $grupo = null;
+ if(isset($_GET['grupo']))
+ $grupo = $_GET['grupo'];
+ $titulares = new HTML_Titulares($grupo, 7);
+ $noticias->addRow(array($arbol,$titulares));
+ $noticias->updateCellAttributes(0, 0, array('valign'=>'top', 'width'=>'160'));
+ $noticias->updateCellAttributes(0, 1, array('width'=>'600'));
+
+ $m->addBodyContent($noticias);
+ $m->display();
+?>