//NEWSLETTER
	function logar(){

	if(document.login.txtNumCartao.value=="" || document.login.txtNumCartao.value=="Nome" )//|| document.news.nome.value.length < 8
	{
	alert( "Preencha campo NOME corretamente!" );
	document.login.txtNumCartao.focus();
	return false;
	}
	
	if(document.login.txtSenha.value=="" || document.login.txtSenha.value=="Senha" )//|| document.news.nome.value.length < 8
	{
	alert( "Preencha campo SENHA corretamente!" );
	document.login.txtSenha.focus();
	return false;
	}
	
	return true;
	}
