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.empresa.value.length;
var indice2 = document.myform.actividad.value.length;
if(indice1<4 && indice2<4){
	alert("Debe informar empresa o actividad, cuatro caracteres mínimo");
	return(false);
}
}

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