		var url_global = "";

		function comprobar(){
			var tipo 		= document.form1.tipo.selectedIndex;
			var provincia   = document.form1.provincia.selectedIndex;	
			if(tipo != 0){
				document.getElementById("tipo").style.background = '#3dbcf7';
				document.getElementById("tipo").style.color      = '#000000';
			}else{
				document.getElementById("tipo").style.background = '#FFFFFF';
				document.getElementById("tipo").style.color      = '#000000';
				
			}
			if(provincia != 0){
				document.getElementById("provincia").style.background = '#3dbcf7';
				document.getElementById("provincia").style.color      = '#000000';
			}else{
				document.getElementById("provincia").style.background = '#FFFFFF';
				document.getElementById("provincia").style.color      = '#000000';
				
			}	
		}
		
		function buscar(){
			var tipo 		= document.form1.tipo.selectedIndex;
			var provincia   = document.form1.provincia.selectedIndex;
			
			var tipo_slug		= document.form1.tipo.options[tipo].value;
			var provincia_slug  = document.form1.provincia.options[provincia].value;				
			
			if(provincia == 0){
				alert("Debe seleccionar una provincia");	
			}else{
				if(tipo == 0){
					window.location.href = url_global + "inmuebles/" +provincia_slug + "/";
					return false;
				}else{
					window.location.href =  url_global + "inmuebles/" +provincia_slug + "/"+ tipo_slug+ "/" ;
					return false;
				}
			}
		}
	
		function formulario_contacto(){
			var name  = document.getElementById('c_nombre').value;
			var email = document.getElementById('c_mail').value;
			var phone = document.getElementById('c_telefono').value;
			var texto = document.getElementById('c_texto').value;
			var captcha = document.getElementById('captcha').value;						

			if(name == "" || email == "" || texto == "" || captcha == ""){
				alert("Rellene Nombre, E-mail, Texto y Codigo de Seguridad");
				return false;
			}else{
				return true;	
			}
		}
		
		
		function formulario_contacto2(){
			var name  = document.getElementById('c_nombre').value;
			var email = document.getElementById('c_mail').value;
			var phone = document.getElementById('c_telefono').value;
			var texto = document.getElementById('c_texto').value;
			var cp = document.getElementById('c_cp').value;			
			var captcha = document.getElementById('captcha').value;						

			if(name == "" || email == "" || captcha == ""  || cp == ""){
				alert("Rellene Nombre, E-mail, Codigo Postal y Codigo de Seguridad");
				return false;
			}else{
				return true;	
			}
		}
		
