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>Lackiercenter Thomas Tewoort<'+'/title><'+'/head>');
    writeln('<frameset cols ="20%,80%" marginwidth="0" marginheight="0" scrolling="auto" frameborder="no" framespacing="0" Border=0 noresize">');
    writeln('<frame name="start" src="http://www.tewoort.de/start.htm">');
    writeln('<frame name="Main" src="' + Datei + '?frameset">');
    writeln('<'+'/frameset><'+'/frameset><'+'/html>');
    close();
  }
}

