function validacion() {
	nombre = document.validanews.nombre.value;
	mail1 = document.validanews.mail.value;
	mail2 = document.validanews.mail2.value;
  if (nombre.length==0 || mail1.length==0 || mail2.length==0) {
    alert('Ningún campo puede estar vacío');
	nombre.focus();
    return false;
  }
  
}
