provincias=new Array("","","","","","","","");
mapas=new Array("mapa-andalucia_0","mapa-andalucia_1","mapa-andalucia_2","mapa-andalucia_3","mapa-andalucia_4","mapa-andalucia_5","mapa-andalucia_6","mapa-andalucia_7","mapa-andalucia_8");
localidades= new Array();
num_localidades= 0;

		
function seleccionarTodasProvincias()
{
	document.getElementById('provincia1').checked= true;
	document.getElementById('provincia2').checked= true;
	document.getElementById('provincia3').checked= true;
	document.getElementById('provincia4').checked= true;
	document.getElementById('provincia6').checked= true;
	document.getElementById('provincia5').checked= true;
	document.getElementById('provincia7').checked= true;
	document.getElementById('provincia8').checked= true;
}
		

function filtrarLocalidades(valor, select)
{
	for(var i= 0; i < select.length; i++)
		select.options.length= 0;
		
	var cadena= valor.value;
	cadena= new String(cadena);
	cadena= cadena.toUpperCase();
	
	var indice=0;
	for(var i= 0; i < num_localidades; i++)
	{
		var elem= new String((localidades[i].split('@@@'))[1]); 
		var id=  new String((localidades[i].split('@@@'))[0]); 
				
		if(elem.indexOf(cadena) != -1)
		{
			var opt= new Option();
			opt.value= id;
			opt.id= id;
			opt.text= elem;
			select.options[indice]= opt;
			indice++;
		}
	}
	if(indice==1)
		select.selectedIndex=0;
		
}


function cambiaMapa(mapa)
{
	window.document.getElementById('hola').className = mapas[mapa];
}
