function getWinHeight() {
	 if (window.innerHeight) return document.documentElement.offsetHeight;
	 else if (document.body && document.body.offsetHeight)
	 return document.body.offsetHeight;
	 else return 0;
}

var seitenhoehe = getWinHeight();
var fensterhoehe = 0;
var contentheight = xHeight('Seite');

if (self.innerHeight) {
	fensterhoehe = self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientHeight)	{
	fensterhoehe = document.documentElement.clientHeight;
}

var echtehoehe = fensterhoehe - seitenhoehe + 15;

if (seitenhoehe != 0 && fensterhoehe != 0) {
	if (seitenhoehe < fensterhoehe) {
		if (echtehoehe > 0) document.getElementById("auslauf").style.height = echtehoehe +"px";
		//document.write("<style type=\"text/css\"> #auslauf {height: "+echtehoehe+"px} </style>");
	}
}

if (typeof(newsid) != "undefined") {
  var newsActive = "news_" + newsid;
  document.getElementById(newsActive).style.color = "#996600";}
