27
| <![CDATA[<script language="javascript">
function ChamaPagina(){
if(window.document.frmDefault.txtBusca.value==''){
alert('� necess�rio informar uma palavra para obter a Busca.');
window.document.frmDefault.txtBusca.focus();
} else {
window.document.frmDefault.action='Pesquisa.asp';
window.document.frmDefault.submit();
}
}
</script>]]>
|
46
| <![CDATA[<script>
document.addEventListener( 'DOMContentLoaded', function() {
var splide = new Splide( '.splide' );
splide.mount();
} );
</script>]]>
|
76
| <![CDATA[<script language='JavaScript'>
function ChamaPaginaMenu(pPagina, pLocalAbertura){
window.document.frmMenuLateral.action=pPagina;
window.document.frmMenuLateral.submit();
}
function AbreMenu(pMenu) {
// window.document.frmMenuLateral.txtMenuAberto.value = pMenu;
// eval('document.getElementById("' + 'txt' + pMenu + '").value = "1"');
// document.getElementById('txtMenuAberto').value = pMenu;
eval('document.getElementById("' + pMenu + '").style.display = "block"');
eval('document.getElementById("' + 'Mais' + pMenu + '").style.display = "none"');
eval('document.getElementById("' + 'Menos' + pMenu + '").style.display = "block"');
}
function FechaMenu(pMenu) {
// window.document.frmMenuLateral.txtMenuAberto.value = '0';
eval('document.getElementById("' + pMenu + '").style.display = "none"');
eval('document.getElementById("' + 'Mais' + pMenu + '").style.display = "block"');
eval('document.getElementById("' + 'Menos' + pMenu + '").style.display = "none"');
}
</script>]]>
|