22
| <![CDATA[<script language="javascript">
function imprimir_(){
var tamHA = 0;
if($("#conteudo_historico").length){
tamHA = document.getElementById("conteudo_historico").offsetLeft;
}
funcao="imprimir.action?visao=original&idAto=" + "112845" + "&tamHA="+tamHA;
window.open(funcao,'page','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=658,height=800');
}
</script>]]>
|
170
| <![CDATA[<script language="javascript">
function verticalScrollPresent() {
return (document.documentElement.scrollHeight !== document.documentElement.clientHeight);
}
function footerAlign() {
$('html').css('height', bodyHeight+80);
$('.div_rodape').css('display', 'block');
$('.div_rodape').css('height', 'auto');
$('.div_rodape').css('width', '100%');
if (verticalScrollPresent()) {
$('.div_rodape').css('position', 'relative');
} else {
$('.div_rodape').css('position', 'absolute');
}
$('.div_rodape').css('bottom', '0');
var footerHeight = 80;
$('.div_rodape').css('height', footerHeight);
}
var bodyHeight = $('html').outerHeight();
$( window ).resize(function() {
footerAlign();
});
$(window).on('scroll', function() {
footerAlign();
});
bodyHeight = $('html').outerHeight();
footerAlign();
</script>]]>
|