function vacio(q)
{  
	for ( i = 0; i < q.length; i++ ) {  
		if ( q.charAt(i) != " " ) {  
			return true;  
		}  
	}  
	return false; 
}
function consult(form){
	var t4=form.consulta.value;
	if(vacio(t4) == false) {
		window.alert("Debe introducir un comentario.");
		form.consulta.focus(); form.consulta.select(); return false;
	}
	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.telefono.value;
	if(vacio(t2) == false) {
		window.alert("Debe introducir un teléfono de contacto.");
		form.telefono.focus(); form.telefono.select(); return false;
	}
	var t3=form.email.value;
	if(vacio(t3) == false) {
		window.alert("Debe introducir un e-mail de contacto.");
		form.email.focus(); form.email.select(); return false;
	}
	return true;
}