<!-- Problema --------------------------------------------------------  -->
<script type="text/javascript" src="<?php 
echo $path_dir;
?>
system/modules/hdi/js/hdi_onload.js"></script>

<?php 
ob_start();
include_once '../system/modules/hdi/getMunicipios.php';
if ($municipio1Arvore != '0' || $municipio2Arvore != '0') {
    $arvore = new Arvore($municipio1Arvore, $municipio2Arvore);
    $ids = $arvore->getIds();
    $idAnos = $arvore->getidAnos();
    $Anos = $arvore->getAnos();
    $NomesMun = $arvore->getNomesMun();
    $Ideal = $arvore->getIdeal();
    $Espac = $arvore->getEspac();
    $Uf = $arvore->getUf();
} else {
    if ($municipio1Arvore == 'nulo' && $municipio2Arvore == 'nulo') {
        $ids = array('0', '0');
        $idAnos = array('0', '0');
        $Anos = array('0', '0');
        $NomesMun = array('0', '0');
        $Ideal = array('0', '0');
        $Espac = array('0', '0');
        $Uf = array('0', '0');
    }
}
?>