var ScrollSpeed = 60;  
var ScrollSource = document.getElementById('StandardScrollBox').innerHTML; 
var PauseIt = 1;   
var ScrollMotion = 1; ScrollMotion=(document.all)? ScrollMotion : Math.max(1, ScrollMotion-1); 
var CurrentMotion = ScrollMotion; 
var RealHeight = ''; 
var StandardScroll; 
var PauseMotion = (PauseIt==0)? CurrentMotion: 0; 
function FillSource() { 	StandardScroll=document.getElementById? document.getElementById("StandardScrollBox") : document.all.StandardScrollBox;	
StandardScroll.style.top=parseInt(100)+8+"px";	
StandardScroll.innerHTML=ScrollSource;	
RealHeight=StandardScroll.offsetHeight; 	
if (RealHeight == 0) RealHeight = 400; 	//height reset if 0 (change reletive to text amount, 20 per line)
setInterval("ScrollIt()",ScrollSpeed);
}function ScrollIt(){	if (parseInt(StandardScroll.style.top)>(RealHeight*(-1)+8))		StandardScroll.style.top=parseInt(StandardScroll.style.top)-CurrentMotion+"px";	
else StandardScroll.style.top=parseInt(100)+8+"px";

} FillSource();