<!--function setScrollbar() {		// Hoehe inneres Browserfenster	if (self.innerHeight) // all except Explorer	{		posY = self.innerHeight;	}		else if (document.documentElement && document.documentElement.clientHeight)	// Explorer 6 Strict Mode	{		posY = document.documentElement.clientHeight;	}	else if (document.body) // other Explorers	{		posY = document.body.clientHeight;	}		// Hoehe aufgerundet abzgl. Hoehe ds Links / 2 -> bestimmt die PositionTop	var posS_Y=Math.round((posY - 116) /2);		// Aktuelle Scrollposition	if (self.pageYOffset) // all except Explorer	{		y = self.pageYOffset;	}	else if (document.documentElement && document.documentElement.scrollTop)	// Explorer 6 Strict	{		y = document.documentElement.scrollTop;	}	else if (document.body) // all other Explorers	{		y = document.body.scrollTop;	}		// PositionTop + aktuelle Scrollposition	var goToY=y+posS_Y;		// ueber CSS die Position dynamisch bestimmen	if (document.getElementById)	{		document.getElementById("scroller").style.top=goToY+"px";			}		// Script ruft sich selbst wieder auf	setTimeout("setScrollbar()",10);}//-->