function ler_noticia(op,id_noticia)
{
	var texto = document.getElementById('texto_noticia_'+id_noticia);
	var resumo = document.getElementById('resumo_noticia_'+id_noticia);
	
	if(op == 'texto')
	{
		texto.style.display = 'block';
		resumo.style.display = 'none';
	}
	else
	{
		texto.style.display = 'none';
		resumo.style.display = 'block';
	}

	return false;
}