function buscar(){

	document.getElementById("buscador").submit();

}

function validar(idioma){
	var txt="";
	
	if(document.getElementById("formulario").NombreApellidos.value==""){
		if(idioma=="es"){
			txt+="* Debe insertar su nombre.\n"
		}
		if(idioma=="en"){
			txt+="* You must insert your name.\n"
		}
	}
	
	if(document.getElementById("formulario").EMAIL.value==""){
		if(idioma=="es"){
			txt+="* Debe insertar su email.\n"
		}
		if(idioma=="en"){
			txt+="* You must insert your email.\n"
		}
	}
	
	if(txt!=""){
		alert(txt)
	}else{
		document.getElementById("formulario").submit();
		//alert("enviado...")
	}
}

function tipo(){
	tipo=document.getElementById("my-dropdown").value;
	zona=document.getElementById("my-dropdown2").value;
	alert("--")
	if(tipo!="-" || zona!="-"){alert("*")
		url = "cambiar-tipo.asp?tipo=" + tipo + "&zona=" + zona
		http.open("GET", url , true);
		http.onreadystatechange = handleHttpResponseTipo;
		http.send(null);
	}	
}

function handleHttpResponseTipo() {
	if (http.readyState == 4) {    
		var respuesta=http.responseText;
		document.getElementById("capaTipoInmueble").innerHTML=respuesta;
		$('#my-dropdown6').sSelect();
	}
}	
