//
// IncubandoIdeas (c) 2002
// www.incubandoideas.com
//

// INICIO FUNCIONES DE VALIDACIÓN

function vEmail() 
    {
	if (document.FormularioNoticias.email.value == "")
           {
             alert('\nDebe ingresar su e-mail.');
             document.FormularioNoticias.email.focus();
             return(false);
        }

        if (document.FormularioNoticias.email.value.indexOf('@',0)==-1 || document.FormularioNoticias.email.value.indexOf('@',0)== 0 ||
          document.FormularioNoticias.email.value.indexOf('.',0)==-1)
             {
                 alert('\nDirección de mail no válido. Por favor verifique el e-mail ingresado.');
                 document.FormularioNoticias.email.focus();
                 return(false);
              }
             else { return(true); }
    }

// FIN FUNCIONES DE VALIDACIÓN


// BOTÓN ENVIAR FORMULARIO DE REGISTRACIÓN
<!--
function EnviarNoticias(FormularioNoticias) 
   {
       if ( vEmail() )
          {
          document.FormularioNoticias.submit();
          }
   }
//-->