// JavaScript Document

var pos=0;
var scrollGo=0;

function scrollDn() {
  if (!document.getElementById) return;
  obj=document.getElementById("thetext");
  pos --;
  if (pos < 0-obj.offsetHeight+250) return;
  obj.style.top=pos;
	if (scrollGo==1) {
  	window.setTimeout("scrollDn()",10);
	}
}

function scrollUp() {
  if (!document.getElementById) return;
  obj=document.getElementById("thetext");
  pos ++;
  if (pos >= 0) return;
  obj.style.top=pos;
	if (scrollGo==1) {
  	window.setTimeout("scrollUp()",10);
	}
}
