//Aumentar e Diminuir Ar.
var fontSize = 10;
	
function aumentar()
{
   fontSize += 2;
   document.getElementById("texto").style.fontSize = fontSize + "px";
}
    
function diminuir()
{
   fontSize -= 2;
   document.getElementById("texto").style.fontSize = fontSize + "px";
}

//Muda a imagem da barra de ferramentas.
function overImage(button, imagem) {
   button.setAttribute('src', imagem);
}

function outImage(button, imagem) {
   button.setAttribute('src', imagem);
}

//Esconde e Aparece DIV
function bloqueio(divName)
{
    if (document.getElementById(divName).style.display == "none")
      {
          document.getElementById(divName).style.display = "block";
      }
    else
      {
          document.getElementById(divName).style.display = "none";      
      }  
}


//
function imprimir()
{
	window.location = 'conteudo_menu.php?conteudo=imprimir&?id=<? $exibe_noticia[id]; ?>';
}

//Carrega Site
function loadImages() {
if (document.getElementById) {  // DOM3 = IE5, NS6
document.getElementById('div_loading').style.visibility = 'hidden';
}
else {
if (document.layers) {  // Netscape 4
document.hidepage.visibility = 'hidden';
}
else {  // IE 4
document.all.hidepage.style.visibility = 'hidden';
     }
  }
}

function novajanela(url,w,h) {
var newWin = window.open(""+url, "newWin","toolbar=no,status=no,menubar=no,scrollbars=yes,width="+w+",height="+h+",hotkeys=no,location=no,resizable=no,screenX=10,screenY=30,status=no,top=80,left=130");
}