+$arbol_valores = array();
+foreach (array('Personales','Domicilio','Cobertura','Estudios','Antiguedad','Laboral','Cónyuge','Hijos','Familiares') as $a)
+{
+ $aa = array(
+ 'titulo'=>$a,
+ 'link'=>'./legajo.php?mostrar='.strtolower($a)
+ );
+ if (in_array(strtolower($a),$_GET))
+ {
+ $aa['activo']=1;
+ }
+ if (!(
+ ($a=='Domicilio' and $agente->datos['domicilio']=='') or
+ ($a=='Cobertura' and $agente->datos['obra_social']=='') or
+ ($a=='Estudios' and count($datos_estudios)==0) or
+ ($a=='Antiguedad' and count($datos_antiguedad)==0) or
+ ($a=='Laboral' and $agente->getDependencia()=='') or
+ ($a=='Cónyuge' and $datos['conyuge']=='') or
+ ($a=='Hijos' and count($datos_hijos)==0) or
+ ($a=='Familiares' and count($datos_familiares)==0)
+ ))
+ {
+ array_push($arbol_valores,$aa);
+ }
+}
+$arbol = new MECON_HTML_Arbol($arbol_valores,'Datos');
+
+$m->addStyleSheet($arbol->getCSS());
+
+