//MENUTEXT

function auf(menu) {

// Die folgenden 3 Zeilen sind fuer Netscape 6
if (document.getElementById) {
document.getElementById(menu).style.visibility="visible";
}
// Ende Netscape 6



if (document.layers) {
document.layers[menu].visibility="visible";
}
}

function zu(menu) {

// Die folgenden 3 Zeilen sind fuer Netscape 6
if (document.getElementById) {
document.getElementById(menu).style.visibility="hidden";
}
// Ende Netscape 6



if (document.layers) {
document.layers[menu].visibility="hidden";
}
}
//SCROLLTEXT
var nsstyle='display:""'
if (document.layers)
var scrolldoc=document.scroll1.document.scroll2
function up(){
if (!document.layers) return
if (scrolldoc.top<0)
scrolldoc.top+=10
temp2=setTimeout("up()",50)
}
function down(){
if (!document.layers) return
if (scrolldoc.top-150>=scrolldoc.document.height*-1)
scrolldoc.top-=10
temp=setTimeout("down()",50)
}

function clearup(){
if (window.temp2)
clearInterval(temp2)
}

function cleardown(){
if (window.temp)
clearInterval(temp)
}

//drucken
function drucken() {
var wert = document.all["scroll3"].innerHTML;
self.name = wert;
self.location.href="drucken.html";
}