------------------------------------------------------------------------------*/
require_once '../../../local_lib/HTML_DietMarco.php';
require_once 'MECON/HTML/Image.php';
require_once 'HTML/Table.php';
require_once '../../../local_lib/Servicios/Informes.php';
//Marco de servicios en intranet
$MARCO = new HTML_DietMarco('servicios', 'Informes Parlamentarios');
$MARCO->addTitle('Informes Parlamentarios');
//Imágenes
$IMG_Blanco1_30 =& new MECON_HTML_Image('../../images/servicios_informes_blanco1.gif', '', array('height'=>'1', 'width'=>'30'));
$IMG_Blanco1_170 =& new MECON_HTML_Image('../../images/servicios_informes_blanco1.gif', '', array('height'=>'1', 'width'=>'170'));
$IMG_Blanco1_20 =& new MECON_HTML_Image('../../images/servicios_informes_blanco1.gif', '', array('height'=>'1', 'width'=>'20'));
$IMG_Blanco1_1 =& new MECON_HTML_Image('../../images/servicios_informes_blanco1.gif', '', array('height'=>'6', 'width'=>'1'));
$IMG_Blanco1_10 =& new MECON_HTML_Image('../../images/servicios_informes_blanco1.gif', '', array('height'=>'10', 'width'=>'10'));
$IMG_l1 =& new MECON_HTML_Image('../../images/servicios_informes_l1.gif', '', array('height'=>'2', 'width'=>'760'));
$IMG_l2 =& new MECON_HTML_Image('../../images/servicios_informes_l2.gif', '', array('height'=>'2', 'width'=>'760'));
$IMG_t1 =& new MECON_HTML_Image('../../images/servicios_informes_t1.gif', '', array('height'=>'24', 'width'=>'30'));
$IMG_t2 =& new MECON_HTML_Image('../../images/servicios_informes_t2.gif', '', array('height'=>'24', 'width'=>'30'));
$IMG_deco1 =& new MECON_HTML_Image('../../images/servicios_informes_deco1.gif', '', array('height'=>'20', 'width'=>'200'));
$IMG_deco2 =& new MECON_HTML_Image('../../images/servicios_informes_deco2.gif', '', array('height'=>'20', 'width'=>'200'));
//Informes Parlamentarios
$INFORMES =& new Servicios_Informes();
//Tabla Contenedora
$TABLA =& new HTML_Table ('border="0" cellPadding="0" cellSpacing="0" width="760"');
$TABLA->addRow(array($IMG_Blanco1_30->toHtml(),
$IMG_Blanco1_170->toHtml(),
$IMG_Blanco1_170->toHtml(),
$IMG_Blanco1_20->toHtml(),
$IMG_Blanco1_170->toHtml(),
$IMG_Blanco1_170->toHtml(),
$IMG_Blanco1_30->toHtml()));
$TABLA->addRow(array($IMG_l1->toHtml()), array('height'=>'2'));
$TABLA->updateCellAttributes(1,0, 'colspan="7"');
$TABLA->addRow(array($IMG_t1->toHtml(),
' ',
'Servicios', '', '',
' ',
$IMG_t2->toHtml()));
$TABLA->updateCellAttributes(2,2, array('colspan'=>'3', 'class'=>'servicios_informes_titulo'));
$TABLA->addRow(array($IMG_l2->toHtml()), array('height'=>'2'));
$TABLA->updateCellAttributes(3,0, 'colspan="7"');
$TABLA->addRow(array($IMG_deco1->toHtml(), '',
'Informes Parlamentarios', '', '',
$IMG_deco2->toHtml(), ''));
$TABLA->updateCellAttributes(4,0, 'colspan="2"');
$TABLA->updateCellAttributes(4,2, 'colspan="3" class="servicios_informes_subtitulo"');
$TABLA->updateCellAttributes(4,5, 'colspan="2"');
$TABLA->addRow(array($IMG_Blanco1_1->toHtml()));
$TABLA->updateCellAttributes(5,0, 'colspan="7"');
$TABLA->addRow(array('
'.$INFORMES->toHtml().'
'));
$TABLA->updateCellAttributes(6,0, 'colspan="7"');
$TABLA->addRow(array($IMG_Blanco1_10->toHtml()));
$TABLA->updateCellAttributes(7,0, 'colspan="7"');
$MARCO->addStyleSheet($INFORMES->getCSS());
$MARCO->addBodyContent($TABLA);
$MARCO->display();
?>