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" "http://www.w3.org/TR/html4/frameset.dtd">');
    writeln('<html><head><title>D&ouml;belt Datenkommunikation - Unsere Produktpalette umfasst Ereignismelder, Fernwirksysteme und Leitstellen.<'+'/title><'+'/head>');



    writeln('<frameset rows="52,*,25" cols="*">');
      writeln('<frame name="Titel" src="/titel.html" scrolling="no" noresize  marginwidth="0" marginheight="0" frameborder="0">');

      writeln('<frame name="main" src="/main_frame_reload.php?path=' + Pfad + '" scrolling="auto" noresize marginwidth="0" marginheight="0" frameborder="0">');

      writeln('<frame name="Leiste" scrolling="no" noresize src="/leiste.html" marginwidth="0" marginheight="0" frameborder="0">');
    writeln('<'+'/frameset><'+'/html>');
    close();
  }
}
