function vacio(q)
{  
	for ( i = 0; i < q.length; i++ ) {  
		if ( q.charAt(i) != " " ) {  
			return true;  
		}  
	}  
	return false; 
}
function consult(form){
	var t1=form.nombre.value;
	if(vacio(t1) == false) {
		window.alert("Debe introducir su nombre.");
		form.nombre.focus(); form.nombre.select(); return false;
	}
	var t2=form.edad.value;
	if(vacio(t2) == false) {
		window.alert("Debe introducir su edad.");
		form.edad.focus(); form.edad.select(); return false;
	}
	var t3=form.comunidad.value;
	if(vacio(t3) == false) {
		window.alert("Debe introducir su Comunidad Autónoma.");
		form.comunidad.focus(); form.comunidad.select(); return false;
	}
	var t3=form.direccion.value;
	if(vacio(t3) == false) {
		window.alert("Debe introducir una dirección de contacto.");
		form.direccion.focus(); form.direccion.select(); return false;
	}
	return true;
}