iens6=document.all||document.getElementById
ns4=document.layers

function getinhalt_hoehe()
	{
	if (iens6)
		{
		inhalthoehe=laufobj.offsetHeight
		}
	else if (ns4)
		{
		document.nskasten.document.nsinhalt.visibility="show"
		}
	}

function nachuntenscrollen()
	{
	if (iens6&&parseInt(laufobj.style.top)>=(inhalthoehe*(-1)+100))
		{
		laufobj.style.top=parseInt(laufobj.style.top)-speed
		}
	else if (ns4&&laufobj.top>=(inhalthoehe*(-1)+100))
		{
		laufobj.top-=speed
		}

	nachuntenscrollenvar=setTimeout("nachuntenscrollen()",100)
	}

function nachobenscrollen()
	{
	if (iens6&&parseInt(laufobj.style.top)<=0)
		{
		laufobj.style.top=parseInt(laufobj.style.top)+speed
		}
	else if (ns4&&laufobj.top<=0)
		{
		laufobj.top+=speed
		}
	nachobenscrollenvar=setTimeout("nachobenscrollen()",100)
	}
