function mostraLinha(nome){
	nome = document.getElementById( nome );

	if(nome.style.display == 'none')
		{	nome.style.display = '';	} 
	else{	nome.style.display = 'none'	}	
}


// FUNÇÃO VALIDAÇÃO DA NEWSLETTER ------- INICIO
function valida_news()
{

f = document.news;


	if(f.c_nome.value.length < 3) {
		alert('Nome não pode estar em branco ou conter menos que 3 caracteres!');
		f.c_nome.focus();
		return false;
	}

	if(f.c_email.value.length < 3) {
		alert('E-mail não pode estar em branco!');
		f.c_email.focus();
		return false;
	}

	if(!ver_email(f.c_email)) {
		alert('E-mail inválido!\nUtilize um e-mail no formato: nome@empresa.com');
		f.c_email.focus();		
		return false;
	}


	f.c_enviar.disabled = true;
	return true;

}



// FUNÇÃO VALIDAÇÃO DA NEWSLETTER ------- FIM


// FUNÇÃO LIMITA TEXT-AREA ------- INICIO