  var Pfad = self.location.href;
  
  if (Pfad.indexOf("file://") && ( parent.frames.length == 0) ){
    var Datei = Pfad.slice(Pfad.lastIndexOf("/") + 1);
    
    document.close();
    
    with (document) {
      open();
      
      writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">');
      writeln('<html>');
      writeln('<head>');
      writeln('  <title>Englisch Lernhilfen. Gesamtverzeichnis</title>');
      writeln('</head>');
      
      writeln('<frameset rows="132,*,42" frameborder="0" framespacing="0">');
      writeln('  <frame name="Top_Frame" src="/TopFrame1.html" scrolling="no" marginwidth="0" marginheight="0" noresize="noresize" />');
      
      writeln('  <frameset name="Middle_Frame" cols="222,*" frameborder="0" framespacing="0">');
      writeln('    <frame name="Menue" src="/Leftframe-Lernhilfen.html" marginwidth="0" marginheight="0" scrolling="no" noresize="noresize" />');
      writeln('    <frame name="Hauptframe" src="' + Datei + '?frameset" marginwidth="0" marginheight="0" />');
      writeln('  </frameset>');
      
      writeln('  <frame name="Bottom_Frame" src="/BottomFrame.html" marginwidth="0" marginheight="0" scrolling="no" noresize="noresize" />');
      writeln('</frameset>');
      
      writeln('</html>');
      
      close();
    }
  }