37
| <![CDATA[<script type="text/javascript">
var tamanhoPadrao = .9;
function MudarTamanho(Tipo, Objeto){
if (navigator.appName == "Netscape") {
b_objeto_i="document.getElementById('";
b_objeto_f="')";
}else{
b_objeto_i="document.all.";
b_objeto_f="";
}
eval("var obj=" + b_objeto_i + Objeto + b_objeto_f);
var Tamanho = parseFloat(obj.style.fontSize.replace("em",""));
if(isNaN(Tamanho))
{
Tamanho=.9;
}
Tamanho=(Tipo==0 ? .9 : Tamanho+Tipo);
if(Tamanho < 1.7 && Tamanho > 0.5){
obj.style.fontSize=Tamanho+"em";
}
}
function normalizaTamanho(Objeto) {
if (navigator.appName == "Netscape") {
b_objeto_i="document.getElementById('";
b_objeto_f="')";
}else{
b_objeto_i="document.all.";
b_objeto_f="";
}
eval("var obj=" + b_objeto_i + Objeto + b_objeto_f);
obj.style.fontSize = tamanhoPadrao+"em";
}
/*<!-- alto contraste -->*/
function setActiveStyleSheet(){
if( cookieRead( 'alto_contraste' ) == null || cookieRead( 'alto_contraste' ) == "" )
cookieCreate('alto_contraste', '1', 1);
else
cookieErase('alto_contraste', '1', 1);
window.location.reload();
}
function cookieCreate(strName, strValue, intDays,timeExpire) {
if ( intDays ) {
var date = new Date();
date.setTime(date.getTime()+(intDays*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
} else {
var expires = "";
}
if( timeExpire ){
expires = "; expires:=" + timeExpire;
}
document.cookie = strName + "=" + strValue + expires + "; path=/";
}
function cookieRead(strName) {
var strNameIgual = strName + "=";
var arrCookies = document.cookie.split(";");
for ( var i = 0, strCookie; strCookie = arrCookies[i]; i++ ) {
while ( strCookie.charAt(0) == " ") {
strCookie = strCookie.substring(1,strCookie.length);
}
if ( strCookie.indexOf(strNameIgual) == 0 ) {
return strCookie.substring(strNameIgual.length,strCookie.length);
}
}
return null;
}
function cookieErase(strName) {
this.cookieCreate(strName,"",-1);
}
</script>]]>
|
112
| <![CDATA[<script type="text/javascript">
$(document).ready(function(){
$("#campo").blur(function(){
if($(this).val() == ''){
$(this).val('Pesquisa');
}
})
$("#campo").keypress(function(event){
if(event.which == 13){
$("#ok").trigger("click");
}
})
$("#campo").focus(function(){
if($(this).val() == 'Pesquisa'){
$(this).val('');
}
})
$("#ok").click(function(){
var opcao = $("#opcaoBusca").val();
var texto = $("#campo").val();
$(":hidden[name=q]").val(texto);
if(opcao == "S"){
$("#busca form").attr({method:"POST",action:"pesquisa.php",target:"_blank"}).submit();
}else{
$("#busca form").attr({method:"GET",action:"http://www.google.com/search",target:"_blank"}).submit();
$(":hidden[name=q]").val('');
}
});
$( "#dialog" ).dialog({
autoOpen: false,
resizable: false,
modal: true,
width: 200,
height: 160,
buttons: {
Ok: function() {
$( this ).dialog( "close" );
}
}
});
/*$( ".item14 a,.item11 a,.item13 a" ).click(function() {
$( "#dialog" ).dialog( "open" );
return false;
});*/ //BASTA DESCOMENTAR ESTE BLOCO PARA VOLTAR A APRESENTAR A MENSAGEM
})
</script>]]>
|