28
| <![CDATA[<script type="text/javascript">
var liftoffTime = new Date();
liftoffTime.setHours( liftoffTime.getHours() + 1 );
$(document).ready(function(){
$( "#HorarioSistema" ).countdown(
{
until: liftoffTime,
format: "HMS",
onTick: ownWay
} );
$( "ul.nav" ).superfish({
hoverClass : "sfHover",
pathClass : "overideThisToUse",
delay : 800,
animation : {opacity:"show"},
speed : "normal",
oldJquery : false, /* set to true if using jQuery version below 1.2 */
disableHI : false, /* set to true to disable hoverIntent detection */
onInit : function(){},
onBeforeShow : function(){},
onShow : function(){},
onHide : function(){}
});
});
function twoDigits( value )
{
return( value < 10 ? "0" : "" ) + value;
}
function ownWay( periods )
{
$( "#HorarioSistema" ).text( periods[ 4 ] + "h" + twoDigits( periods[ 5 ] ) + "m" + twoDigits( periods[ 6 ] ) + "s" );
}
</script>]]>
|
69
| <![CDATA[<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;
m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-60594849-1', 'auto');
ga('send', 'pageview');
</script>]]>
|
154
| <![CDATA[<script type="text/javascript">
$( document ).ready(
function()
{
// Se o navegador for diferente do Mozilla Firefox apresenta mensagem
if( !$.browser.mozilla )
{
$().modal(
{
url: "http://siater.mda.gov.br:80/sys/siater/public/aviso",
title: "Verificação de navegador",
blocked: true
}
);
}
// Clendario
var objDate = new Date();
var intMinAno = objDate.getFullYear() - 120;
var intMaxAno = objDate.getFullYear();
var strYearRange = new String( intMinAno + ':' + intMaxAno );
$( ".calendario" ).datepicker({dateFormat: "dd/mm/yy", yearRange:strYearRange, changeMonth: true, changeYear: true});
// Seleciona municipio da UF
$( "select[name=strUf]" ).change(
function()
{
selecionaMunicipio( $( this ).val(), 'intMunicipio', 'http://siater.mda.gov.br:80/sys/siater/public/getmunicipio/', '' );
}
)
jQuery("#strCnpj").mask("99.999.999/9999-99");
// Executa a recuperação dos dados a partir do cnpj
$( "input[name=strCnpj]" ).change(
function()
{
if( $( this ).val().length > 0 )
{
recuperaCnpj();
}
}
);
}
)
function recuperaCnpj()
{
$.ajax(
{
type: "POST",
url: "http://siater.mda.gov.br:80/sys/siater/public/recuperarcnpj",
cache: false,
async: false,
dataType: "xml",
data: {cnpj: $( "#strCnpj" ).val()},
beforeSend: function()
{
objSpan = $( "#frmCadastroInstituicao :input[name=strCnpj]" ).parent().children().get( 1 ) ;
$( objSpan ).hide();
$( "#request" ).append( '<img src="http://siater.mda.gov.br:80/sys/systems/siater/public/images/loader_tabela.gif" width="12" height="12" alt="loader"/>' );
},
success: function( strXml )
{
// Esconde mensagens
escondeErro();
escondeSucesso();
$( strXml ).find( "success" ).each(
function()
{
exibeSucesso( $( this ).text() );
$( "#moreContents" ).show();
}
)
$( strXml ).find( "error" ).each(
function()
{
var strTexto = $( this ).text();
strTexto = strTexto.replace( /\[/gi, "<" );
strTexto = strTexto.replace( /\]/gi, ">" );
$( "#frmCadastroInstituicao :input[name=strCnpj]" ).val( "" );
$( "#moreContents" ).hide();
$().alert( strTexto, "Instituição" );
}
)
$( strXml ).find( "redirect" ).each(
function()
{
var strTexto = $( this ).text();
strTexto = strTexto.replace( /\[/gi, "<" );
strTexto = strTexto.replace( /\]/gi, ">" );
var strUrl = $( this ).attr( "url" );
$().alert( strTexto, "Instituição", function(){ window.location = strUrl } );
}
)
// Limpa imagem loading
$( "#request" ).empty();
}
}
);
}
/**
* Limpa os dados informados no form
*/
function limpaDados()
{
// Esconde messagens
escondeErro();
escondeSucesso();
$( "#frmCadastroInstituicao input[type=text]" ).val( "" );
$( "#frmCadastroInstituicao select" ).val( "" );
}
/**
* Exibe a mensagem de erro
*/
function exibeErro( strMsg )
{
escondeSucesso();
$( "#erroMessage" ).html( strMsg ).show();
}
/**
* Esconde a mensagem de erro caso exista
*/
function escondeErro()
{
$( "#erroMessage" ).fadeOut( "slow" );
$( "#erroMessageList" ).fadeOut( "slow" );
}
/**
* Exibe a mensagem de sucesso
*/
function exibeSucesso( strMsg )
{
// Esconde messagem sucesso
escondeErro();
$( "#sucessoMessage" ).html( strMsg ).show();
}
/**
* Esconde a mensagem de sucesso caso exista
*/
function escondeSucesso()
{
$( "#sucessoMessage" ).fadeOut( "slow" );
$( "#sucessoMessageList" ).fadeOut( "slow" );
}
// Submit do formulario
$.validator.setDefaults({
submitHandler: function() {
$( "#frmCadastroInstituicao" ).submit();
}
});
$.metadata.setType("attr", "validate");
$().ready(function() {
$("#frmCadastroInstituicao").validate({
rules: {
strCnpj: "required",
strUfCredenciamento: "required",
strRazaoSocial: "required",
intTipoEntidade: "required",
strDataConstituicao: "required",
strEndereco: "required",
strUf: "required",
intMunicipio: "required",
strCep: "required",
strTelefone: "required",
strEmail: {
required: true,
email: true
},
strDataCredenciamento: "required",
strNumeroProtocolo: "required"
},
messages: {
strCnpj: "(Obrigatório.)",
strUfCredenciamento: "(Obrigatório.)",
strRazaoSocial: "(Obrigatório.)",
intTipoEntidade: "(Obrigatório.)",
strDataConstituicao: "(Obrigatório.)",
strEndereco: "(Obrigatório.)",
strUf: "(Obrigatório.)",
intMunicipio: "(Obrigatório.)",
strCep: "(Obrigatório.)",
strTelefone: "(Obrigatório)",
strEmail: "Informe um e-mail válido.",
strDataCredenciamento: "(Obrigatório.)",
strNumeroProtocolo: "(Obrigatório.)"
}
});
$( "#strEmail" ).focusin(function(){
mostraHintEmail();
});
$("#strEmail").focusout(function(){
$('#hintEmail').hide();
});
function mostraHintEmail(){
$('#hintEmail').html('<div style="margin: 2px 0 0 0; padding: 10px 10px 10px 65px; border-bottom: 1px solid #ccc; width: 577px;"><div align="center" id="mensagem"><div style="margin: 4px;" align="justify" id="msgAviso"></div></div></div>');
colocaMensagem();
}
function colocaMensagem(){
var msg = "Alerta: o SIATER tem apresentado problemas de envio/recebimento de email para o Hotmail. Sendo assim, a sugestão é utilizar um email diferente (exemplo: Gmail, Yahoo, entre outros). Observação: o SIATER utiliza o email cadastrado para envio da senha de acesso.";
$('#hintEmail').appendTo('#fieldset-controle');
$('#hintEmail').show();
$('#msgAviso').html(msg);
$("#mensagem").addClass('hintemail');
}
});
</script>]]>
|