var Pfad = self.location.href;
if (Pfad.indexOf("file://") && !parent.frames.length) {
  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><head><title>bostext AG Leonberg - Werksatz, DTP, Sprachen und Druckvorstufe<'+'/title><'+'/head>');
    writeln('<frameset rows="120,*,39" cols="*" framespacing="0" border="0">');
    writeln('<frame name="topFrame" frameborder="no" scrolling="NO" noresize marginwidth="0" marginheight="0" src="http://www.bostext.de/oben.html">');
    writeln('<frame name="mainFrame" frameborder="no" src="http://www.bostext.de/sitemap.html">');
    writeln('<frame name="bottomFrame" frameborder="no" scrolling="NO" noresize src="http://www.bostext.de/fr_unten.html">');
    writeln('<frame name="mainFrame" frameborder="no" src="' + Datei + '?frameset">');
    writeln('<'+'/frameset><'+'/frameset><'+'/html>');
    close();
  }
}

