// JavaScript Document

//var dominio = "http://localhost:8080/consultamedica/";
//var dominio = "http://www.laconsultamedica.es/preproduccion/";

function style_reset(a){
	/*
	document.getElementById("especialidad").style.background = '#FFFFFF';
	document.getElementById("especialidad").style.color      = '#000000';
	
	document.getElementById("provincia").style.background    = '#FFFFFF';
	document.getElementById("provincia").style.color         = '#000000';
	*/
}

function comprobar(){
	var especialidad = document.form1.especialidad.selectedIndex;
	var provincia    = document.form1.provincia.selectedIndex;	
	
	if(especialidad != 0){
		document.getElementById("especialidad").style.background = '#79fa79';//'#006600';
		document.getElementById("especialidad").style.color      = '#000000';
	}
	if(provincia != 0){
		document.getElementById("provincia").style.background = '#79fa79';
		document.getElementById("provincia").style.color      = '#000000';
	}	

	// Si ambos están seleccionados..
	if(especialidad != 0 && provincia != 0){
		buscar();	
	}

}

function buscar(){
	var especialidad = document.form1.especialidad.options[document.form1.especialidad.selectedIndex].value;
	var provincia    = document.form1.provincia.options[document.form1.provincia.selectedIndex].value;	
	
	var especialidad_seleccionada = especialidad;
	var provincia_seleccionada    = provincia;

	//location.href= dominio+ "listados/" + especialidad_seleccionada + "/" + provincia_seleccionada+ "/" ;
	
	location.href= especialidad_seleccionada + "/" + provincia_seleccionada+ "/" ;
		
}
