<!--
if (document.layers)
{
	var startbreite = window.innerWidth;
	var starthoehe = window.innerHeight;
}


function refresh_screen()
{
	if (document.layers && window.innerWidth != startbreite
    	|| window.innerHeight != starthoehe)
 	{
    	location.reload();
	}
}


function getElement(name)
{
         if (parseInt(navigator.appVersion) >= 4 && navigator.userAgent.indexOf("MSIE") != -1) {
             return eval("document.all." + name + ".style");
         }
         else if (parseInt(navigator.appVersion) == 4 && navigator.appName == "Netscape") {
                  return eval("document.layers." + name);
         }
         else if (parseInt(navigator.appVersion) >= 5 && navigator.appName == "Netscape") {
                  return document.getElementById(name).style;
         }
}


function show(name)
{
         getElement(name).visibility = "visible";
}

function hide(name)
{
         getElement(name).visibility = "hidden";
}

function placeLayer(name, links, oben)
{
         getElement(name).left = eval (links);
         getElement(name).top = eval (oben);
}

function killAll()
{
      for (i = 1; i<=1;i++) {
      	hide('h'+eval(i));
      	hide('p'+eval(i));
      }
}

function aus()
{
	clearInterval(scroll_sub)
}

function an(move)
{
	speed=5;
	move2 = move*speed
	scroll_sub = setInterval('scroll(move2)',50)
}

function scroll(richtung)
{
	if (document.layers) {
		objekt = document.scrollerDiv.document.scroller;
	}
	else {
		objekt = getElement('scroller');
	}
	if ((initPos>topStop) && (initPos<bottomStop)) {
		objekt.top = initPos + richtung;
		initPos = initPos + richtung;
	}
	if (initPos<=topStop) initPos = topStop+1;
	if (initPos>=bottomStop) initPos = bottomStop-1;
}

// -->