﻿//function Mapa() {
//    var entidad = document.getElementById("entidad").value;
//    var mun = document.getElementById("municipio").value;
//    var sec = document.getElementById("seccion").value;
//    var ind = document.getElementById("indicadores").value;
//    var noment = document.getElementById("NombreEntidad").value;
//    var ani = document.getElementById("ano").value;
//    var src = document.getElementById("src").value;
//}
function CargaDatos(ent, Mun, Indi, Ano,SSrc,sec,idioma) {
    //if(entidad!=='' || null)
    if (ent == '' || ent == null) {
        entidadID = document.getElementById('Hident').value;
        if (document.getElementById('iu_selEntidades').options[document.getElementById('iu_selEntidades').selectedIndex].value != 0) {
            entidadID = document.getElementById('iu_selEntidades').options[document.getElementById('iu_selEntidades').selectedIndex].value;
        }
    }
    else {
        entidadID = ent;
     }

     if (Mun == '' || Mun == null) {
         municipioID = document.getElementById('Hidmun').value;
         if (document.getElementById('iu_selMunicipios').options.length > 0) {
             if (document.getElementById('iu_selMunicipios').options[document.getElementById('iu_selMunicipios').selectedIndex].value != "") {
                 municipioID = document.getElementById('iu_selMunicipios').options[document.getElementById('iu_selMunicipios').selectedIndex].value;
             }
         }
     }
     else {
         municipioID = Mun;
      }
      if (SSrc == '' || SSrc == null) {
          src = document.getElementById('Hidsr').value;
      }
      else {
          src = SSrc;
       }

      if (Indi == '' || Indi == null || Indi== undefined) {
           HIndi = document.getElementById('iu_hidIndicadorID').value;
       }
       else {
           HIndi = Indi;
        }
        if (Ano == '' || Ano == null) {
            HAno = document.getElementById('iu_hidAnio').value;
        }
        else {
            HAno = Ano;
         }
//    if (NomEnt == '' || NomEnt == null) {
//        HNomEnt = document.getElementById('iu_hidEntidadID1').value
        //    }
    if (ent== '' || ent==undefined) {
        entidadID = "0"
    }
    if (Mun == '' || Mun==undefined) {
        municipioID = "0"
    }

    //window.open("http://www.inegi.org.mx/sistemas/mapatematicomexicocifras/default.aspx?ent=" + ent + "&mun=" + Mun + "&sec=M&ind=" + Indi +"&ani="+Ano+ "&src"+ SSrc);
    //var ventana=window.open("http://www5.inegi.org.mx/sistemas/mapatematicomexicocifras/default.aspx?e=" + entidadID + "&mun=" + municipioID + "&sec=M&ind=" + HIndi + "&ani=" + HAno + "&src=" + src);
    var ventana = window.open("http://www2.inegi.org.mx/sistemas/mapatematicomexicocifras3d/default.aspx?e=" + entidadID + "&mun=" + municipioID + "&sec=M&ind=" + HIndi + "&ani=" + HAno + "&src=" + src+"&i="+idioma);
    
    ventana.focus();
    //mapawindow = window.open("Mapa.aspx?indicadorID=" + Indi + "&entidadID=" + entidadID + "&anio=" + Ano + "&ordenarPorValor=false&idioma=" + idioma + "&municipioID=" + municipioID + "&nombreindicador=");
    //mapawindow.focus();
}



