function validarFormulario(f){
     if (f.Nombre.value.length <"4"){
            alert('Error: Rellene su nombre por favor');
			return false;
			}
	if (f.Email.value.length <"8"){
            alert('Error: Rellene su dirección de correo por favor');
			return false;
			}
	if (f.Tema.value.length <"3"){
            alert('Error: Rellene el campo tema');
			return false;
			}
			
     //FORMATOS CORRECTOS
    //expresiones regulares
	//var er_tfno = /(^([0-9]{9,9}))$/				//9 numeros
	/*
	var er_tfno = /(^[0-9\s\+\-])+$/

	
   	//comprueba campo telefono movil del solicitante
	if(!er_tfno.test(f.Telefono.value)) { 
		alert('Por favor, introduce los 9 digitos del Teléfono Móvil');
		return false;
	}  */
	
	
	if ( (!f.acepto.checked)) {
         alert('Debe aceptar la politica de privacidad para solicitar información, active el checkbox inferior');
		 return false;
		 }
		 
	return true;
}