//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated.  All rights reserved.
function submitIt(cadastroForm)
          {
              if (cadastroForm.nome.value=="" )
                        {
                          alert('Invalid email address')
                          return false
                        }
              //Transforma o valor da caixa de e-mail em constante para melhorar o visual do script
               endereco=cadastroForm.email.value
			   
			   //Verifica a existência do @ no endereço
              atPos=endereco.indexOf("@",1)

               //Testa de campo de e-mail está vazio
              if (cadastroForm.email.value == '' | atPos == -1 | endereco.indexOf("@",atPos+1)>-1 | endereco.indexOf(".",atPos) == -1)
                        {
                          alert('Invalid email address')
                          return false
                        }
				else {
				obj = document.getElementById('mailing');
  				obj.style.visibility = "hidden";
				obj = document.getElementById('mailingResponse');
  				obj.style.visibility = "visible";
				}
              
          }
