var sp=0;
function swtScroll() {
scrtext=document.getElementById?document.getElementById("sctext"):document.all["sctext"];
maxp=scrtext.offsetHeight?scrtext.offsetHeight:scrtext.style.pixelHeight;
if (sp<-maxp) sp=0;
sp--;
scrtext.style.top=sp;
s1=setTimeout('swtScroll()',50); // larger number = slower scroll
}
if (!document.layers) window.onload=swtScroll;

function stop(){clearTimeout(s1);}