echo '<TR><TD>';
echo '<fieldset><legend>' . msg('files') . '</legend>';
$ged->protocol = $cep->protocolo;
echo $ged->filelist();
echo '</fieldset>';
echo '</table>';
echo '</div>';
echo '<BR>';
echo '<fieldset><legend>' . msg('historic') . '</legend>';
echo '<div id="the_history">';
echo '<div id="bha" style="text-align: left;">' . msg('show_historic') . '</div>';
echo '<div id="the_history_show" style="display:none;">';
echo '<table width="100%" bgcolor="#F0F0F0">';
echo '<TR valign="top"><TD>';
echo '<font class="lt3">' . msg('historic') . '</font>';
echo $cep->cep_historic();
echo '<TD width="25"><img src="img/icone_close.png" id="bhe" width="25"  style="cursor: pointer;">';
echo '</table>';
echo '</div>';
echo '</div>';
echo '</fieldset>';
echo '</div>';
echo '</div>';
echo $hd->foot();
?>
<script>
	$("#bha").click(function () 
		{ 
			$("#the_history_show").fadeIn("slow");
			$("#bha").fadeOut("slow");
		} );