
var provincias=new Array();
var localidades=new Array();
var tipo="";


function verlocalidad(ind)
{
	var aux=localidades[ind].split('#');
	document.getElementById("formuCajeros").idlocalidad.options.length=aux.length+1;
	var k=0;
	var posicion=1;
	document.getElementById("formuCajeros").idlocalidad.options[k].text='Todas';
	//document.getElementById("formuCajeros").provinciacajero[ind].text+':';
	document.getElementById("formuCajeros").idlocalidad.options[k].value='-1';
	
	for (k=1;k<aux.length+1;k++) {
		var aux1=aux[k-1].split("+");
		document.getElementById("formuCajeros").idlocalidad.options[k].text=aux1[0];
		document.getElementById("formuCajeros").idlocalidad.options[k].value=aux1[1];
	}
}

function iniciar1()
{
	var p=document.getElementById("formuCajeros").provi.value.split(',');
	
	for (var i=0;i<p.length;i++)
		provincias[provincias.length]=p[i];
	
	var l=document.getElementById("formuCajeros").local.value.split(',');
	for (var i=0;i<l.length;i++)
		localidades[localidades.length]=l[i];
	
	completalocalidades();
	document.getElementById("formuCajeros");
	aCero();
	
	document.getElementById("cont_script").style.display='block';
}

function aCero(){
	document.getElementById("formuCajeros").tiquexpress.checked=false;
	//document.getElementById("formuCajeros").provincia.value='';
	//document.getElementById("formuCajeros").localidad.value='';
}

function completalocalidades()
{
	var cad='<img class="flecha" src="images/flecharoja.gif" width="3" height="5" alt="" /><label for="provinciacajero">Provincia</label><br />';
	cad += '<select name="idprovincia" id="provinciacajero" onChange="verlocalidad(this.selectedIndex)">';
	for (var i=0;i<provincias.length/2;i++)
	{
		var mat=provincias[i].split("+");
		cad+='<option value="'+mat[1]+'"';
		if (mat[0]=='Asturias')
			cad+=' selected="selected"';
		cad+='>'+mat[0]+'</option>';
	}
	cad+='</select>';
	document.getElementById("provinciastexto").innerHTML=cad;
	verlocalidad(document.getElementById("formuCajeros").provinciacajero.selectedIndex);
}

function enviar(id)
{
	var bien = 1;
	//comprueba código postal 
	if(document.getElementById("formuCajeros").codpostal.value != '') 
		document.getElementById("formuCajeros").codpostal.value = eval(document.getElementById("formuCajeros").codpostal.value);
	
	if (bien==1) 
	{
		switch (id)
		{
			case '-1': 
				document.getElementById("formuCajeros").provincia.value=document.getElementById("formuCajeros").idprovincia.options[document.getElementById("formuCajeros").idprovincia.selectedIndex].text;
				document.getElementById("formuCajeros").localidad.value=document.getElementById("formuCajeros").idlocalidad.options[document.getElementById("formuCajeros").idlocalidad.selectedIndex].text;
				if (document.getElementById("formuCajeros").funcionalidad) 
					document.getElementById("formuCajeros").funcionalidad.value=9;
				document.getElementById("formuCajeros").submit();
				break;
			case 'tiq':
				document.getElementById("formuCajeros");
				document.getElementById("formuCajeros");
				document.getElementById("formuCajeros").submit();
				break;
			case 3: 
				document.location.href="/oficinasycajeros/buscadorasturias.html";
				break;
			default:
				document.getElementById("formuCajeros");
				document.getElementById("formuCajeros").idprovincia.value=id;
				for (var i=0;i<provincias.length;i++)
				{
					var mat=provincias[i].split("+");
					if (mat[1]==id){
						document.getElementById("formuCajeros").provincia.value= mat[0];
					}
				}
				document.getElementById("formuCajeros").submit();
				break;
		}
	}
}


function muestraOculta(nombrecapa) 
{
	var capa = document.getElementById(nombrecapa);
	if (capa.style.display=="block") capa.style.display="none";
	else capa.style.display="block";
}

function muestratipos(cod){
	document.getElementById("tiquexpress").style.display="none";
	if (cod==2){
		document.getElementById("otrasopciones").style.display="block";
		document.getElementById("tiquexpress").style.display="block"; 
		
		//document.getElementById("tiposofi").style.display="none";document.getElementById("tiposofi").style.visibility="hidden";
		
		document.getElementById("titotrasopciones").innerHTML='<a href="#" onClick="ocultatipos(2)"><strong>Cajeros</strong></a>';
	}
}

function ocultatipos(cod){
	document.getElementById("tiquexpress").style.display="block";
	document.getElementById("tiquexpress").style.visibility="visible";
	
	if (cod=='a'){
		document.getElementById("tiquexpress").style.display="none";document.getElementById("tiquexpress").style.visibility="hidden";
	}
	else if (cod==2){
		document.getElementById("formuCajeros").style.display="none";
		document.getElementById("titotrasopciones").innerHTML='<img class="flecha" src="images/flecharoja.gif" width="3" height="5" alt="" /><a href="#" onClick="muestratipos(2)"><strong>Cajeros</strong></a>';
		aCero();
	}
}


window.onload = iniciar1; 
