internacional brasil | |
|
2 |
Image by Cool Text: Logo and Button Generator - Create Your Own Logo
accessKey: "" align: "" alt: "Capa do jornal Clarín" attributes: NamedNodeMap baseURI: "https://www.netpapers.com/blogs.cfm" border: "0" childElementCount: 0 childNodes: NodeList[0] children: HTMLCollection[0] classList: DOMTokenList className: "" clientHeight: 255 clientLeft: 0 clientTop: 0 clientWidth: 185 complete: true contentEditable: "inherit" crossOrigin: "" dataset: DOMStringMap dir: "" draggable: true firstChild: null firstElementChild: null height: 255 hidden: false hspace: 0 id: "" innerHTML: "" innerText: "" isContentEditable: false isMap: false lang: "" lastChild: null lastElementChild: null localName: "img" longDesc: "" lowsrc: "" name: "" namespaceURI: "https://www.w3.org/1999/xhtml" naturalHeight: 325 naturalWidth: 240 nextElementSibling: HTMLImageElement nextSibling: Text nodeName: "IMG" nodeType: 1 nodeValue: null offsetHeight: 255 offsetLeft: 0 offsetParent: HTMLDivElement offsetTop: 0 offsetWidth: 185 onabort: null onbeforecopy: null onbeforecut: null onbeforepaste: null onblur: null onchange: null onclick: function onclick(event) { oncontextmenu: null oncopy: null oncut: null ondblclick: null ondrag: null ondragend: null ondragenter: null ondragleave: null ondragover: null ondragstart: null ondrop: null onerror: null onfocus: null oninput: null oninvalid: null onkeydown: null onkeypress: null onkeyup: null onload: null onmousedown: null onmousemove: null onmouseout: null onmouseover: null onmouseup: null onmousewheel: null onpaste: null onreset: null onscroll: null onsearch: null onselect: null onselectstart: null onsubmit: null onwebkitfullscreenchange: null onwebkitfullscreenerror: null outerHTML: "" outerText: "" ownerDocument: HTMLDocument parentElement: HTMLDivElement parentNode: HTMLDivElement prefix: null previousElementSibling: null previousSibling: Text scrollHeight: 255 scrollLeft: 0 scrollTop: 0 scrollWidth: 185 spellcheck: true src: "https://www.netpapers.com/capas/clarin/clarin_22042012.jpg" style: CSSStyleDeclaration tabIndex: -1 tagName: "IMG" textContent: "" title: "Capa do jornal Clarín" useMap: "" vspace: 0 webkitdropzone: "" width: 185 x: 739 y: 226 __proto__: HTMLImageElement
media="screen" html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, textarea, input, select { font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; }
var cor_primaria = '#FFF5D0'; function $$(p_div_id) { if(document.layers) return document.layers[p_div_id]; if(document.getElementById) return document.getElementById(p_div_id); if(document.all) return document.all[p_div_id]; if(document[p_div_id]) return document[p_div_id]; return ( false ); } /* Biblioteca : utilLib.js Autor : Jefferson Petilo( jpetilo@riabrazil.com.br ) */ // Gerenciador de eventos function addEvent(element, eventType, lamdaFunction, useCapture) { if (element.addEventListener) { element.addEventListener(eventType, lamdaFunction, useCapture); return true; } else if (element.attachEvent) { var r = element.attachEvent('on' + eventType, lamdaFunction); return r; } else { return false; } } // Recupera a p�gina corrente function getCurrentPage() { var caminho = window.location.pathname; var pagina = caminho.substring( caminho.lastIndexOf('/') + 1 ); return ( pagina ); } // Atualiza a p�gina pai function fnc_reload() { try { opener.location.reload(); } catch ( e ) { return ( false ); } } // Atualiza a p�gina pai e fecha filha function fnc_fecha_dialog() { try { var janela = ( window.opener )?window.opener:window.dialogArguments; janela.location.reload(); window.close(); } catch ( e ) { return ( false ); } } // Recupera a refer�ncia do div( cross-browser ) function fnc_referencia_div( p_div_id ) { //Netscape layers if( document.layers ) return document.layers[ p_div_id ]; //DOM; IE5, NS6, Mozilla, Opera if( document.getElementById ) return document.getElementById( p_div_id ); //Proprietary DOM; IE4 if( document.all ) return document.all[ p_div_id ]; //Netscape alternative if( document[p_div_id] ) return document[p_div_id]; return ( false ); } // oculta o div function fnc_mostra_div( p_div_id ) { if( !fnc_referencia_div( p_div_id ) ) return; fnc_referencia_div( p_div_id ).style.display = ''; } // mostra o div function fnc_oculta_div( p_div_id ) { if( !fnc_referencia_div( p_div_id ) ) return; fnc_referencia_div( p_div_id ).style.display = 'none'; } function initCap( str ) { var str = str.substring(0,1).toUpperCase() + str.substring(1,str.length).toLowerCase(); return str; } function getAbsolutePos(el) { var r = { x: el.offsetLeft, y: el.offsetTop }; if (el.offsetParent) { var tmp = getAbsolutePos(el.offsetParent); r.x += tmp.x; r.y += tmp.y; } return r; } // Centraliza o div na p�gina function fnc_centro( p_janela ) { var jsdlg = 215; var w,h; var left, top; // se o banner n�o estiver dispon�vel if( !fnc_referencia_div( p_janela ) ) return; if (self.innerHeight) { // all except Explorer w = self.innerWidth; h = self.innerHeight; } else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode w = document.documentElement.clientWidth; h = document.documentElement.clientHeight; } else if (document.body) { // other Explorers w = document.body.clientWidth; h = document.body.clientHeight; } fnc_referencia_div( p_janela ).style.left = left = (w/2)-(415/2); fnc_referencia_div( p_janela ).style.top = top = (h/2)-((jsdlg+85)/2); } // Altera a cor da linha function swapBG( el, BG1, BG2 ) { el.style.backgroundColor = ( el.style.backgroundColor == BG1 ) ? BG2 : BG1; } // mostra coment�rio de ajuda function showAjuda( div, titulo, descricao ) { if( !fnc_referencia_div( div )) return; var ajuda = fnc_referencia_div( div ).style; ajuda.display = 'inline'; ajuda.position = 'absolute'; ajuda.width = '170'; ajuda.backgroundColor = 'lightyellow'; ajuda.border = 'dashed 1px black'; ajuda.padding = '10px'; ajuda.innerHTML = '' + titulo + '
'; } // oculta o coment�rio de ajuda function hideAJuda( div ) { if( !fnc_referencia_div( div )) return; fnc_referencia_div( div ).style.display = 'none'; } function fnc_mostrar_tooltip(p_objeto, p_texto, p_alinhamento, p_cor_fundo) { if( !p_texto ) return; // se o hint n�o estiver dispon�vel n�o executa o tooltip var deslocamento; var size = ( !p_objeto.style.width.split('px')[0] )?p_objeto.size * 4:p_objeto.style.width.split('px')[0];; var posicao = getAbsolutePos( p_objeto ); var tip = document.createElement('div'); tip.id = 'tip'; tip.style.backgroundColor = '#ffffcc'; tip.style.color = '#000000'; tip.style.border = 'solid black 1px'; tip.style.fontFamily = 'Geneva'; tip.style.fontSize = '10px'; tip.style.zIndex = '551'; tip.style.display = 'none'; tip.style.width = eval( p_texto.length * 5.2) + "px"; tip.style.height = ( p_texto.length > 100)?40 + "px":20+ "px"; tip.style.position = 'absolute'; tip.innerHTML = String.fromCharCode(32,32) + p_texto; switch ( p_alinhamento.toLowerCase() ){ case "top" : tip.style.top = eval(posicao.y - tip.offsetHeight) + "px"; tip.style.left = posicao.x + "px"; break; case "left" : deslocamento = parseInt( posicao.x - tip.offsetWidth) + parseInt( size ) + 35; tip.style.top = posicao.y + "px"; tip.style.left = deslocamento + "px"; break; case "bottom" : tip.style.top = eval(posicao.y + tip.offsetHeight) + "px"; tip.style.left = posicao.x + "px"; break; case "right" : tip.style.top = posicao.y + "px"; tip.style.left = eval( posicao.x + tip.offsetWidth ) + "px"; break; } document.body.appendChild( tip ); tip.style.display =''; } function fnc_ocultar_tooltip(){ if(!fnc_referencia_div('tip')) return; document.body.removeChild( fnc_referencia_div('tip') ); } // Alterna a cor de fundo do elemento function setBackgroundColor( e ) { var target; if (window.event) { // IE5.5 and below target = window.event.srcElement; } else if (e) { // N4+ && DOM compliant target = e.target; } else { target = "unsupported"; } if( target.style ) { target.style.backgroundColor = cor_primaria; fnc_mostrar_tooltip( target ,target.getAttribute('hint'),'left', target.style.backgroundColor ); } } // Limpa a cor de fundo do elemento function clearBackgroundColor( e ) { var target; if (window.event) { // IE5.5 and below target = window.event.srcElement; } else if (e) { // N4+ && DOM compliant target = e.target; } else { target = "unsupported"; } if( target.style ) { target.style.backgroundColor = ''; fnc_ocultar_tooltip(); } } function fnc_mudar_fonte( p_objeto, p_tipo ) { var tamanho = 13; if ( p_tipo == 'mais') { if(tamanho < 19) tamanho +=2; } else { if(tamanho > 6 ) tamanho-=2; } fnc_referencia_div( p_objeto ).style.fontSize = tamanho + 'px'; } function fnc_contar_caracteres( p_campo, p_contador, p_max_char,p_nao_inserir_texto ) { if( p_campo.value.length > p_max_char ) { p_campo.value = p_campo.value.substr(0, p_max_char); p_contador.value = p_max_char - p_campo.value.length; } else p_contador.value = p_max_char - p_campo.value.length; if (p_nao_inserir_texto == null ){ p_nao_inserir_texto=false; } var posicao = getAbsolutePos( p_contador ); var texto = (p_nao_inserir_texto ? "" : 'Caracteres restantes'); var comentario = document.createElement('span'); comentario.id = p_campo.name; comentario.style.fontStyle = 'normal'; comentario.style.letterSpacing = '1px'; comentario.style.fontFamily = 'Arial'; comentario.style.fontSize = '10px'; comentario.style.zIndex = '551'; comentario.style.position = 'absolute'; comentario.style.color = 'black'; comentario.innerHTML = String.fromCharCode(32,32) + texto; comentario.style.top = eval( posicao.y + 2 ) + "px"; comentario.style.left = eval( 37 + posicao.x + comentario.offsetWidth ) + "px"; if( p_contador.value == p_max_char ) document.body.appendChild( comentario ); } function bloqueiaLetras(){ var codTecla = parseInt(window.event.keyCode); var tecla = String.fromCharCode(codTecla); if (!(codTecla >= 48 && codTecla <= 57="" codtecla="=" 44="" 46="" window="" event="" keycode="0;" function="" getfckeditorcontent="" p_fck_instancia="" var="" oeditor="FCKeditorAPI.GetInstance(" odom="oEditor.EditorDocument" content="" return="" setbgcolor="" e="" target="" if="" ie5="" 5="" and="" below="" else="" n4="" dom="" compliant="" style="" backgroundcolor="#D3DCD9" showtip="" getattribute="" comentario="" left="" cor_primaria="" limpa="" a="" cor="" de="" fundo="" do="" elemento="" clearbgcolor="" hidetip="" show="" p_id="" visibility="hidden" length="" display="none" hide="" p_objeto="" p_texto="" p_alinhamento="" p_cor_fundo="" deslocamento="" size="" width="eval(" split="" px="" 0="" 4:p_objeto="" posicao="getAbsolutePos(" tip="" id="tip" color="#000000" border="solid black 1px" fontfamily="Geneva" fontsize="10px" zindex="551" 2="" height="(" data-mce-style=""> 100)?40 + "px":20+ "px"; tip.style.position = 'absolute'; tip.innerHTML = String.fromCharCode(32,32) + p_texto; switch ( p_alinhamento.toLowerCase() ){ case "top" : tip.style.top = eval(posicao.y - tip.offsetHeight) + "px"; tip.style.left = posicao.x + "px"; break; case "left" : deslocamento = parseInt( posicao.x - tip.offsetWidth) + parseInt( size ) + 75; tip.style.top = posicao.y + "px"; tip.style.left = deslocamento + "px"; break; case "bottom" : tip.style.top = eval(posicao.y + tip.offsetHeight) + "px"; tip.style.left = posicao.x + "px"; break; case "right" : tip.style.top = posicao.y + "px"; tip.style.left = eval( posicao.x + tip.offsetWidth ) + "px"; break; } document.body.appendChild( tip ); $show('tip'); } function $hideTip(){ if(!$$('tip')) return; document.body.removeChild( $$('tip')); } function fnc_change_parent_background(obj,bgcolor) { var tr=obj.parentNode.parentNode; tr.style.backgroundColor=(obj.checked)? 'pink' : 'white'; } function Lpad( p_numero ){ return (( p_numero <= 9="" 0="" p_numero="" :="" function="" limitchar="" string="" count="" var="" novo_texto="(" length="">= count )? string.substr( string, count ) + '...' : string; return ( novo_texto ); } function swapBG( el, BG1, BG2 ) { try{ el.style.backgroundColor = ( el.style.backgroundColor == BG1 ) ? BG2 : BG1; } catch(e){ } } function isYear(anoCorrente){ var numAnosIntervalo = 150; var anoAtual = Number( new Date().getFullYear() ); var anoCorrente = Number(anoCorrente); return ( anoCorrente > anoAtual - numAnosIntervalo && anoCorrente < anoAtual + numAnosIntervalo ); } function fnc_compara_data( data1, data2 ) { var v_ano1 = data1.getYear(); var v_ano2 = data2.getYear(); var v_mes1 = data1.getMonth(); var v_mes2 = data2.getMonth(); var v_dia1 = data1.getDate(); var v_dia2 = data2.getDate(); // verifica se os anos são diferentes if ( v_ano1 > v_ano2 ) { return -1; } if ( v_ano2 > v_ano1 ) { return 1; } // verifica se os meses são diferentes if ( v_mes1 > v_mes2 ) { return -1; } if ( v_mes2 > v_mes1 ) { return 1; } // verifica se os dias são diferentes if ( v_dia1 > v_dia2 ) { return -1; } if ( v_dia2 > v_dia1 ) { return 1; } // se a data for igual return ( 0 ); } DateFromString = function( a ) { var p_data = a.split( '/' ); for ( var i = 0 ; i < p_data.length ; i++ ) p_data[ i ] = p_data[ i ] ; return( new Date( p_data[ 2 ] , p_data[ 1 ] - 1 , p_data[ 0 ] ) ); } DataHoraFromString = function( a , b ) { var p_data = a.split( '/' ); var p_hora = b.split( ':' ); for ( var i = 0 ; i < p_data.length ; i++ ) p_data[ i ] = p_data[ i ] ; for ( var i = 0 ; i < p_hora.length ; i++ ) p_hora[ i ] = p_hora[ i ] ; return( new Date( p_data[ 2 ] , p_data[ 1 ] - 1 , p_data[ 0 ] , p_hora[ 0 ] , p_hora[ 1 ] ) ); } // onblur="CopiarValor('f_cd_area','f_area')" function CopiarValor( p_campo_origem, p_campo_destino ){ var frm = form('principal'); var campo_origem = frm.elements[ p_campo_origem ]; var campo_destino= frm.elements[ p_campo_destino ]; if(campo_origem.value.trim().length > 0 && campo_destino.value.trim().length == 0 ){ campo_destino.value = campo_origem.value; } return false; } function getRadioSelecionado( p_grupo ) { if(typeof p_grupo == 'string') p_grupo = eval('document.principal.'+p_grupo); if( p_grupo[ 0 ] ) { for(var i = 0; i < p_grupo.length; i++ ) if( p_grupo[ i ].checked ) return ( i ); // returna posição do elemento do array que est' + String.fromCharCode( 224 ) + ' selecionado } else if( p_grupo.checked ) return ( 0 ); // retorna posição do primeiro elemento return ( -1 ); // retorna que não existe elemento selecionado } // getRadioSelecionadoValor(f_radio_grupo) // getCheckboxValor('f_check_grupo') function getCheckboxValor( p_grupo ) { var lista_valores = '0'; var grupo = ( typeof p_grupo != 'string')?p_grupo:form('principal').elements[ p_grupo ]; if(typeof grupo == 'undefined') return lista_valores; var vLength = grupo.length; if( typeof vLength == 'undefined' ) if(grupo.checked) return grupo.value; else return lista_valores; for( var i=0, vTotal=vLength; i
p=241&w=h&c=607065&f=ffffff" width="215px" height="200px" frameborder="0" allowtransparency="true" marginwidth="0" marginheight="0" scrolling="no">