
function janelasemscroll(arq,nome,wd,hg,lx,ly)
{
	cmd = "'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + wd + ",height=" + hg + ",left=" + lx + ",top=" + ly + "'";
	jan_popup = window.open(arq,nome,cmd);
	jan_popup.jan_pai = top;
}

function mailingList()
	{
	var texto, msgaux, erro;
	erro = false;
	msgaux = 'Por favor, confira os campos:\n';

	texto = document.formMailing.nome.value;
	if (texto.length < 1) {
		msgaux+='\n- Entre com seu nome';
		erro=true;
	}

	texto = document.formMailing.email.value;
	if (texto.length < 1) 
	 { 
		msgaux+='\n- Entre com o seu e-mail.';
		erro=true;
 	 }
	else
	 { 
		//Validando o e-mail
		var str = texto; // email string
		var reg1 = /(@.*@)|(\.\.)|(@\.)|(\.@)|(^\.)/; // not valid
		var reg2 = /^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,3}|[0-9]{1,3})(\]?)$/; // valid
		if (!reg1.test(str) && reg2.test(str)) // if syntax is valid
		 {  texto=''  }
		else
		 { 
	 		msgaux+='\n- O seu endereço de e-mail é inválido.';
			erro=true; 
		 }
	 }

	 // Verifica se ouve erro
	if (erro == false)
	{
		janelasemscroll('','janela_mailing',300,250,75,100)
		document.formMailing.submit();
	}
	else
	{
		alert(msgaux);
    }

}

