// JavaScript Document

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>TMK Neukirchen bei Lambach<'+'/title><'+'/head>');
    writeln('<frameset cols="170,*" frameborder="0" border="0" framespacing="0">');
    writeln('<frame name="navi" src="http://www.musikneukirchen.at/left.php?id=0" frameborder="NO" scrolling="NO" noresize marginwidth="0" marginheight="0">');
    writeln('<frameset rows="110,*" frameborder="0" border="0" framespacing="0">');
    writeln('<frame name="top" src="http://www.musikneukirchen.at/top.htm" frameborder="NO" scrolling="NO" noresize marginwidth="0" marginheight="0">');
    writeln('<frame name="main" src="' + Datei + '?frameset" frameborder="NO" scrolling="AUTO" marginwidth="0" marginheight="10">');
    writeln('<'+'/frameset><'+'/frameset><'+'/html>');
    close();
  }
}