<!--
		var browser;
		browser=navigator.appName;
		
		iens6=document.all||document.getElementById
		ns4=document.layers

		//Scroll-Geschwindigkeit (hoeher=schneller)
		var speed=16

		if (browser=="Microsoft Internet Explorer") {
	
			if (iens6)
				document.write('</div></div>')
				if (ns4)
				document.write('</div>')
		}
		
		
		if (browser=="Netscape") {

			if (iens6)
				document.write('</div>')
				if (ns4)
				document.write('</div>')
				
		}
		
	//-->	
		
	

	if (iens6){
			var laufobj=document.getElementById? document.getElementById("inhalt") : document.all.inhalt
			var inhalthoehe=laufobj.offsetHeight
			}
			else if (ns4){
			var laufobj=document.nskasten.document.nsinhalt
			var inhalthoehe=laufobj.clip.height
			}
			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)
			}
			function getinhalt_hoehe(){
			if (iens6)
			inhalthoehe=laufobj.offsetHeight
			else if (ns4)
			document.nskasten.document.nsinhalt.visibility="show"
			}
			window.onload=getinhalt_hoehe