]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/dto/encuesta.php
- Pase los objetos para obtener la informacion del legajo a meconlib
[mecon/intranet.git] / sistema / www / servicios / dto / encuesta.php
index 3ccce6012cd4d56ffd9ff85d48f0fd9d37a68832..00a3a81dd77f45115f6a4975bf80ef54f3a6f52d 100644 (file)
@@ -12,6 +12,7 @@ require_once 'HTML_Mensaje.php';
 require_once 'MECON/HTML/Link.php';
 require_once 'MECON/HTML/Image.php';
 require_once 'MECON/HTML/Tabla.php';
+require_once '../../../local_lib/HTML_Institucional.php';
 
 if(!isset($_SESSION['usuario'])){
        header('Location: ../../servicios.php');
@@ -85,5 +86,13 @@ else{
     }
 }
 
+$TABLA_INSTITUCIONAL = new HTML_Table('border="0" width="760" align="left"');
+$INST = new HTML_Institucional ('/sistemas/intranet/servicios/estatico/institucionales/dto/dto_areas.php',
+                                        'Institucional de la D. Técnica Operativa',325,550,500);
+$TABLA_INSTITUCIONAL->addRow(array($INST), 'align="center"');
+$MARCO->addBodyContent('<br>');
+$MARCO->addBodyContent($TABLA_INSTITUCIONAL);
+$MARCO->addStyleSheet($INST->getCSS());
+
 $MARCO->display();
 ?>