function masPoblaciones(id)
{
  if(document.getElementById(id).style.display=='inline')
  {
    document.getElementById('masPob').innerHTML="<b>[+] poblaciones...</b>";
    document.getElementById(id).style.display='none';
  }
  else
  {
    document.getElementById('masPob').innerHTML="<b>[-] poblaciones</b>";
    document.getElementById(id).style.display='inline';
  }
}

function masProvincias(id)
{
  if(document.getElementById(id).style.display=='inline')
  {
    document.getElementById('masProv').innerHTML="<b>[+] provincias...</b>";
    document.getElementById(id).style.display='none';
  }
  else
  {
    document.getElementById('masProv').innerHTML="<b>[-] provincias</b>";
    document.getElementById(id).style.display='inline';
  }
}

function validarForm(){
var indice1 = document.myform.nombre.value.length;
var indice2 = document.myform.tipo.selectedIndex;
var indice3 = document.myform.provincia.selectedIndex;
if(indice1<4 && indice2==0 && indice3==0){
	alert("informe alguna de las opciones para buscar");
	return(false);
}
}

function go(url){
	 retorno=window.open(url);
	 return(true);
}

function toggle(id) {
	if (document.getElementById('alj'+id).style.display == 'block') {
		document.getElementById('alj'+id).style.display = 'none'
		document.getElementById('hr'+id).innerHTML = '[+]'
	} else {
		document.getElementById('alj'+id).style.display = 'block'
		document.getElementById('hr'+id).innerHTML = '[-]'
	}
}
