// JavaScript Document
// funcões para rolagem do texto
var oIntervBottom;
var oIntervTop;

function fTop(){
	window.clearInterval(oIntervTop);
	oIntervTop = window.setInterval("document.getElementById('divScroll').scrollTop=document.getElementById('divScroll').scrollTop-5",100); <!-- Velocidade quando sobre o Bt (CIMA)-->
}
function fBottom(){
	window.clearInterval(oIntervBottom);
	oIntervBottom = window.setInterval("document.getElementById('divScroll').scrollTop=document.getElementById('divScroll').scrollTop+5",100); <!-- Velocidade quando sobre o Bt (BAIXO)-->
}
function fStopBottom(){
	window.clearInterval(oIntervBottom);
}
function fStopTop(){
	window.clearInterval(oIntervTop);
}
function fTopTudo(){
	window.clearInterval(oIntervTop);
	oIntervTop = window.setInterval("document.getElementById('divScroll').scrollTop=document.getElementById('divScroll').scrollTop-5",20);  <!-- Velocidade quando clicado no Bt (CIMA)-->
}
function fBottomTudo(){
	window.clearInterval(oIntervBottom);
	oIntervBottom = window.setInterval("document.getElementById('divScroll').scrollTop=document.getElementById('divScroll').scrollTop+5",20); <!-- Velocidade quando Clicado no Bt (BAIXO)-->
}



function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}