function Valida(form){
if (form.nombre.value == ""){
	alert("Es necesario especificar tu nombre");
	form.nombre.focus();
	return(false);
}
if (form.email.value == "" || form.email.value.indexOf ('@', 0) == -1 || form.email.value.indexOf ('.', 0) == -1 || form.email.value.length < 8){
	alert("Tu e-mail no es correcto");
	form.email.focus();
	return(false);
}
if (((form.telf.value.length < 9) && (form.telf.value.length > 0)) || ((form.telf.value > 9) && (form.telf.value < 0))){
	alert("Tu número de teléfono no es correcto");
	form.telf.focus();
	return(false);
}
if (form.where.value == "Indicar" || form.where.value == "-1"){
	alert("Especifica dónde nos has conocido, por favor");
	form.where.focus();
	return(false);
}
if (form.comentarios.value == ""){
	alert("No has hecho ningún comentario");
	form.comentarios.focus();
	return(false);
}
if (form.comentarios.value.length > 3000){
	alert("Tus comentarios son demasiado extensos, intenta ser más conciso");
	form.comentarios.focus();
	return(false);
}
form.submit();
}
