// JavaScript Document

function elegir() {

document.getElementById("provincia").selectedIndex=0;

}



function popUp(URL) {

day = new Date();

id = day.getTime();

eval("page" + id + " = window.open(URL, '" + id + "', 'scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=820');");



}



function validar(form1) {



if (form1.nombre.value =="")



{

	alert("Has de introducir tu nombre");

	form1.nombre.focus();

	return (false);

}

if (form1.poblacion.value =="")



{

	alert("Has de introducir tu población");

	form1.poblacion.focus();

	return (false);

}

if(form1.contacto.value.length < 9) {
	
	alert("Has de introducir tu teléfono");

	form1.contacto.focus();

	return (false);
}


return (true);



}

function buscar(){



	var indice = document.getElementById("provincia").selectedIndex;

	var texto = document.getElementById("provincia").options[indice].text;



	if(texto!="Elegir provincia")location.href="index.php?provincia="+texto;



}



function buscar2(){

var indice2 = document.getElementById("provincia").selectedIndex;



	var texto2 = document.getElementById("provincia").options[indice2].text;



	var indice = document.getElementById("tipo").selectedIndex;



	if(indice2==0) texto2="";



	if(indice==0) texto="";



	var texto = document.getElementById("tipo").options[indice].text;



	if(indice==0) texto="";



	location.href="index.php?seccion=busquedar&tipo="+texto+"&provincia="+texto2;



}





function validar_consultamultiple(formulario) {



if(formulario.nombre.value=="" || formulario.poblacion.value=="" || formulario.telefono.value=="" || formulario.texto.value=="") {



	alert("Los campos obligatorios han de ser rellenados");

	return(false);

}



else return(true);



}

