function abrir(URL,width,height) {

  var left = 99;
  var top = 99;

  window.open(URL,'janela', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}

function abreforum(){
win3 = new Window({className: "spread", title: "<font color='white'>Fórum Souvestibulando</font>", 
								  top:10, right:100, width:800, height:600, 
								  closable: true, url: "http://www.souvestibulando.com.br/forum", showEffectOptions: {duration:1.53}})
	win3.show();
}

function horizontal() { 

   var navItems = document.getElementById("barra").getElementsByTagName("li"); 
        
   for (var i=0; i< navItems.length; i++) { 
          if((navItems[i].className == "menuvertical") || (navItems[i].className == "submenu")) 
          { 
                 if(navItems[i].getElementsByTagName('ul')[0] != null) 
                 { 
                        navItems[i].onmouseover=function() {this.getElementsByTagName('ul')[0].style.display="block";this.style.
backgroundColor = "#f9f9f9";} 
                        navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.style.
backgroundColor = "#FFFFFF";} 
                 } 
          } 
   } 

}


// trexo abaixo serve para ativar a rolagem das últimas notícias da pag. principal
  i = 0;
  
      tempo = 50;
      tamanho = 826; // tamanho da barra de rolagem  >> Ver arquivo Leiame.txt

      function Rolar() {
        document.getElementById('painel').scrollTop = i;
        i++;
        t = setTimeout("Rolar()", tempo);
        if (i == tamanho) {
          i = 0;
        }
      }
      function Parar() {
        clearTimeout(t);
      }

