	document.copytop = 144  //abs position of top of text
	document.toploc = document.copytop
	document.botloc = 150  //position when scrolling will stop
	document.clickstatus = 'free'
	var scrollspeed = null
	var scrollamt = null
	
//sets the scolling speed for each of the browsers
	function setspeed () {
			if (document.layers) { scrollspeed = 5; scrollamt = 2; }
			else if (document.all)  { scrollspeed = 1; scrollamt = 4; }
			}
			
	
	function setmove(where,howmuch) //set the timer running to move either up or down
	{
	document.clickstatus = where;
		if (parseInt(howmuch) !=  0)
		{
			document.botloc= parseInt(howmuch);
		}
	}
	

	function stopmove() // empty the stored timeout value
	{
		document.clickstatus = 'free';
	}

	function checkstatus()
	{
		if (document.clickstatus != 'free')
			{
			movetext(document.clickstatus);
			}
		if (document.clickstatus == 'free')
		{
		}
		window.setTimeout("checkstatus()", 30)
	}

	function movetext(where) //move the text. This should be simple but...
	{
	if (where == 'up')
		{
		if (document.copytop <= document.toploc)
			{
			document.copytop = document.copytop + 1;
			copyt.top = document.copytop;
			}
		else
			{
			document.clickstatus = 'free';
			}
		}

	else //all the same as above but with anegative value
		{
		if (document.copytop > document.botloc)
			{
			document.copytop = document.copytop - 1;
			copyt.top = document.copytop;
			}
		else
			{
			document.clickstatus = 'free';
			}
		}
	}

function reddy() 
        {		
	setspeed();
	document.loaded = 1;
                checkstatus();
        }
