function Lista () 
{	
	this.winHeightEditar = function() 
	{
		height = parseInt(S.winHeight ());
		S.$('bloqueia_editar').style.height = height - 146 + 'px';
		S.$('editar').style.height = height - 162 + 'px';
	}
	
	this.mostrarConteudo = function ($indice)
	{
		$show = window.document.getElementById ("texto_conteudo[" + $indice + "]");
		$hide = window.document.getElementById ("mini_conteudo[" + $indice + "]");
		
		$show.style.display = "block";
		$hide.style.display = "none";		
	}
	
	this.esconderConteudo = function ($indice)
	{
		$show = window.document.getElementById ("mini_conteudo[" + $indice + "]");
		$hide = window.document.getElementById ("texto_conteudo[" + $indice + "]");
		
		$show.style.display = "block";
		$hide.style.display = "none";		
	}
}

lista = new Lista ();
