z ="'";

function hoch() {
  top.main.location.href = top.main.location.pathname + '#top';
}

function Links(index) {
  top.menu2.document.write('<TD ALIGN="CENTER">');
  if (top.main.location.href.indexOf(URL[index],0) > 0) {
    top.menu2.document.write('<FONT COLOR="#FFFF00">');
  }
  else {
    top.menu2.document.write('<A HREF="'+URL[index]+'" TARGET="main" onMouseOver="window.status='+z+Text[index]+z+'; return true" onMouseOut="window.status='+z+z+'; return true">');
  }
  top.menu2.document.write(Text[index]);
  if (top.main.location.href.indexOf(URL[index],0) > 0) {
    top.menu2.document.write('</FONT>');
  }
  else {
    top.menu2.document.write('</A>');
   }
   top.menu2.document.write(' </TD>')
   if (Text.length > index+1) {
     Links(index+1);
   }
}

function Menu2() {
  Text0 = "'eine Seite zurück'";
  Text1 = "'an den Anfang der Seite'";
  Text2 = "'zur Startseite der Steintorlaufhomepage'";
  Text3 = "'zur Homepage des SV Viktoria Goch'";
  top.menu2.document.open();
  top.menu2.document.write('<HTML><HEAD><LINK REL="stylesheet" TYPE="text/css" href="../../menu.css"><HEAD><BODY BGCOLOR="#000000"><TABLE WIDTH="100%" CELLSPACING="0" CELLPADDING="0" BORDER="0"><TR><TD WIDTH="30" ALIGN="LEFT"><A HREF="Javascript:parent.main.history.go(-1);" TARGET="main" onMouseOver="window.status='+Text0+'; return true" onMouseOut="window.status='+z+z+'; return true"><IMG SRC="../../grafik/back.gif" WIDTH="8" HEIGHT="15" BORDER="0" ALT="back"></A> <A HREF="Javascript:hoch();" TARGET="main" onMouseOver="window.status='+Text1+'; return true" onMouseOut="window.status='+z+z+'; return true"><IMG SRC="../../grafik/top.gif" WIDTH="15" HEIGHT="8" BORDER="0" ALT="top"></A> </TD>');
  Links(0);
  top.menu2.document.write('<TD ALIGN="CENTER"><A HREF="../index.htm" TARGET="_top" onMouseOver="window.status='+Text2+'; return true" onMouseOut="window.status='+z+z+'; return true">Hauptseite</A> </TD><TD WIDTH="120" ALIGN="RIGHT" STYLE="font-size: 13px; ">&copy; by <A HREF="../../index.htm" TARGET="_top" onMouseOver="window.status='+Text3+'; return true" onMouseOut="window.status='+z+z+'; return true">Viktoria Goch</A> </TD></TR></TABLE></BODY></HTML>');
  top.menu2.document.close();
}