// --------------------------------------valida newsLetter-----------------------------------------------
function $(id){
	return document.getElementById(id)
	}
function news(){
	if($('nome').value.length <= 3 ){
		alert('Preencha o campo nome!');
		$('nome').focus();
		return false
		}
	if ($('email').value.length <= 3){
		alert('Preencha o campo e-mail');
		$('email').focus();
		return false;
		}	
	if($('email').value.indexOf('@') <=	2 || $('email').value.indexOf('.') <= 4){
		alert('Digite um E-mail válido');
		$('email').focus();
		return false;
		}else {
			alert('Cadastro efetuado com sucesso!');
			}
		
	}
	

