211
| <![CDATA[<script type="text/javascript">
var meses = new Array("Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez");
var codigo_google = 'UA-42348988-2';
</script>]]>
|
217
| <![CDATA[<script type="text/javascript">
function trunca_texto(div_texto, length) {
var texto = document.getElementById(div_texto).innerHTML;
var texto_final = texto.substring(0, Math.min(length,texto.length));
document.getElementById(div_texto).innerHTML = texto_final;
if(texto.length > length) document.getElementById(div_texto).innerHTML += " ...";
}
var SecaoId = '';
</script>]]>
|
761
| <![CDATA[<script>
if('' != '') document.getElementById('anexos615').style.display = 'block';
</script>]]>
|
764
| <![CDATA[<script language="javascript">
function PrintElem(elem,ValId)
{
var mywindow = window.open('', 'PRINT', 'height=400,width=600');
document.getElementById('btnImprimir'+ValId).style.display='none';
document.getElementById('btnImprimir1'+ValId).style.display='none';
document.getElementById('btnImprimir2'+ValId).style.display='none';
mywindow.document.write('<html><head><title>' + document.title + '</title>');
mywindow.document.write('</head><body >');
mywindow.document.write(document.getElementById(elem).innerHTML);
mywindow.document.write('</body></html>');
mywindow.document.close(); // necessary for IE >= 10
mywindow.focus(); // necessary for IE >= 10*/
mywindow.print();
mywindow.close();
document.getElementById('btnImprimir'+ValId).style.display='block';
document.getElementById('btnImprimir1'+ValId).style.display='block';
document.getElementById('btnImprimir2'+ValId).style.display='block';
return true;
}
</script>]]>
|