<!--

//CSS nachladen
		if(document.getElementById)document.write("<link rel='stylesheet' href='../eigenschaften/stylesheets_ie_n6.css' type='text/css'>");
		if(document.all)document.write("<link rel='stylesheet' href='../eigenschaften/stylesheets_ie.css' type='text/css'>");
		if(document.layers)document.write("<link rel='stylesheet' href='../eigenschaften/stylesheets_nn.css' type='text/css'>");


//Fenster oeffnen
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);




// Frameset nachladen
/*
var ZielDatei = "../index.html";

if (!top.FramesetGeladen){
if(document.images)
top.location.replace(ZielDatei); 
else 
top.location.href = ZielDatei ;
}
*/

//Up Down

pos=0; //Variable zum positionieren des Scrolltextes
timer=null //Variable für das Timeout
sprung=1 //scrollweite pro functionsaufruf
zeit=20 
 

function scrollitup() 
{
if (document.layers)//wenn NS4
{
max=document.fenster.document.fenster1.document.height-280; 
if (pos<max)
{
pos=pos+sprung; 
document.fenster.document.fenster1.top=pos*-1 
}
}
else if(document.all) //IE 4+5
{
max=document.all.fenster1.offsetHeight-280; 

if(pos<max)
{
pos=pos+sprung;
document.all.fenster1.style.posTop=pos*-1
}
}
else if(document.getElementById)//NS6 +IE5
{
max=document.getElementById("fenster1").offsetHeight-280; 
if(pos<max)
{
pos=pos+sprung;
document.getElementById("fenster1").style.top=pos*-1
}
}
timer=window.setTimeout("scrollitup()",zeit) 
}
function scrollitdown() 
{
if (document.layers)//NS4
{

if (pos>0)
{
pos=pos-sprung;
document.fenster.document.fenster1.top=pos*-1 
}
}
else if(document.all)//IE 4+5
{
if(pos>0)
{
pos=pos-sprung;
document.all.fenster1.style.posTop=pos*-1
}

}
else if(document.getElementById&&!document.all)//NS6 +IE5
{

if(pos>0)
{
pos=pos-sprung
document.getElementById("fenster1").style.top=pos*-1
}
}
timer=setTimeout("scrollitdown()",zeit) 
}

//-->

