9
| <![CDATA[<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WFCTGR62CE');
</script>]]>
|
17
| <![CDATA[<script>
function isIE () {
var myNav = navigator.userAgent.toLowerCase();
return (myNav.indexOf('msie') != -1) ? parseInt(myNav.split('msie')[1]) : false;
}
if (isIE () && isIE () < 9) {
alert("Este site é incompativel com as versões inferiores ao Internet Explorer 9. Atualize o seu navegador.");
}
</script>]]>
|
52
| <![CDATA[<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"url": "http://www.finep.gov.br",
"logo": "http://www.finep.gov.br/templates/interagi-finep/images/logo2.png",
"contactPoint": [{
"@type": "ContactPoint",
"telephone": "+55 21 2555-0555",
"contactType": "customer service"
}]
}
</script>]]>
|
65
| <![CDATA[<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "Finep",
"url": "http://www.finep.gov.br",
"sameAs": [
"http://www.facebook.com/FINEPInova",
"https://twitter.com/finep",
"https://www.youtube.com/user/FINEPcomunica",
"https://plus.google.com/+FinepInova%C3%A7%C3%A3oePesquisaBR/posts",
"https://www.linkedin.com/company/finep"
]
}
</script>]]>
|
137
| <![CDATA[<script type="text/javascript">
jQuery(window).on('load', function() {
new JCaption('img.caption');
});
JCEMediaBox.init({popup:{width:"65%",height:"75%",legacy:0,lightbox:0,shadowbox:0,resize:1,icons:1,overlay:1,overlayopacity:0.8,overlaycolor:"#000000",fadespeed:500,scalespeed:500,hideobjects:0,scrolling:"fixed",close:2,labels:{'close':'Close','next':'Next','previous':'Previous','cancel':'Cancel','numbers':'{$current} of {$total}'},cookie_expiry:"",google_viewer:0,pdfjs:0},tooltip:{className:"tooltip",opacity:0.8,speed:150,position:"tr",offsets:{x: 16, y: 16}},base:"/",imgpath:"plugins/system/jcemediabox/img",theme:"squeeze",themecustom:"",themepath:"plugins/system/jcemediabox/themes"});
jQuery(document).ready(function(){
jQuery('.hasTooltip').tooltip({"html": true,"container": "body"});
});
</script>]]>
|
149
| <![CDATA[<script type="text/javascript">
document.onkeydown = function(e) {
var keychar;
// Internet Explorer
try {
keychar = String.fromCharCode(event.keyCode);
e = event;
}
// Firefox, Opera, Chrome e outros
catch (err) {
keychar = String.fromCharCode(e.keyCode);
}
//var urlSite = 'http://10.0.200.88/portal/';
var urlSite = 'http://finep.gov.br/';
var urlPage = 'http://finep.gov.br/acessibilidade';
if (e.altKey) {
if (keychar == 0) {
// alt + 0 = acessibilidade
location.href = urlSite + "br/acessibilidade";
return false;
}
if (keychar == 1) {
//conteudo
location.href = urlPage + "#sp-maincol";
return false;
}
if (keychar == 2) {
//menu
var j = jQuery.noConflict();
if (j("#div-content div").css("left") == "auto" || j("#div-content div").css("left") == "0px") {
j("#div-lateral").show();
if (j(window).width() > 960) {
j("#div-content div").animate({
left: "-280px"
}, 500, function() {
});
} else {
j("#div-content div").animate({
left: "-40%"
}, 500, function() {
});
}
} else {
j("#div-content div").animate({
left: "0px"
}, 500, function() {
j("#div-lateral").hide();
});
}
location.href = urlPage + "#div-lateral-menu";
return false;
}
if (keychar == 3) {
// busca
//foca a busca
var j = jQuery.noConflict();
j('#campo-imput').animate({width: 'toggle'}, 800);
j('#topo-fixed-campo-imput').animate({width: 'toggle'}, 800);
document.getElementById("mod-finder-searchword").focus();
}
if (keychar == 4) {
//home
location.href = urlSite + "br/";
}
if (keychar == 5) {
//contraste
location.href= urlPage.replace("?contraste=2","")+"?contraste=1";
}
if (keychar == 6) {
//ts('body',-1)
ts('body', -1);
}
if (keychar == 7) {
//alt + 3 aumenta a fonte
//ts('body',1)
ts('body', 1);
}
if (keychar == 8) {
//alt + 5 retorna ao padrão da fonte
acessibilidadeNormal();
}
}
}
</script>]]>
|
354
| <![CDATA[<script type="text/javascript">
//<![CDATA[
jQuery(function($)
{
var value, $searchword = $('.finep-finder .search-query');
// Set the input value if not already set.
if (!$searchword.val())
{
$searchword.val('o que você procura?');
}
// Get the current value.
value = $searchword.val();
// If the current value equals the default value, clear it.
$searchword.on('focus', function()
{ var $el = $(this);
if ($el.val() === 'o que você procura?')
{
$el.val('');
}
});
// If the current value is empty, set the previous value.
$searchword.on('blur', function()
{ var $el = $(this);
if (!$el.val())
{
$el.val(value);
}
});
$('#mod-finder-searchform').on('submit', function(e){
e.stopPropagation();
var $advanced = $('#mod-finder-advanced');
// Disable select boxes with no value selected.
if ( $advanced.length)
{
$advanced.find('select').each(function(index, el) {
var $el = $(el);
if(!$el.val()){
$el.attr('disabled', 'disabled');
}
});
}
});
/*
* This segment of code sets up the autocompleter.
*/
var url = '/component/finder/?task=suggestions.display&format=json&tmpl=component';
var ModCompleter = new Autocompleter.Request.JSON(document.getElementById('mod-finder-searchword'), url, {'postVar': 'q'});
});
//]]>
</script>]]>
|