  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>Events anmelden und Events finden in der Pfalz und deutschlandweit - Tanzparties, Veranstaltungen, Weinfeste, Stadtfeste, Konzerte, Festivals etc.</title>');
      writeln('</head>');
      
      writeln('<frameset rows="87,*,40" frameborder="0" framespacing="0">');
	  
      writeln('  <frameset cols="1075,*" frameborder="0" framespacing="0">');
      writeln('    <frame name="Top_Frame" src="/Top_Frame.html" marginwidth="0" marginheight="0" noresize="noresize" scrolling="no">');
      writeln('    <frame name="Werbung" src="/Werbung1.html" marginwidth="0" marginheight="0" scrolling="no">');
      writeln('  </frameset>');
      
      writeln('  <frameset cols="125,950,*" frameborder="0" framespacing="0">'); 
	  
      writeln('    <frame name="Inhalt" src="/Leftframe.html" marginwidth="0" marginheight="0" noresize="noresize" scrolling="no">'); 
      writeln('    <frame name="Hauptframe" src="' + Datei + '?frameset" marginwidth="0" marginheight="0" />');
      writeln('    <frame name="Werbung" src="/Werbung2.html" marginwidth="0" marginheight="0" scrolling="no">');
      writeln('  </frameset>');
      
	    writeln('  <frameset cols="1075,*" frameborder="0" framespacing="0">');
      writeln('    <frame name="Bottom_Frame" src="/BottomFrame.html" marginwidth="0" marginheight="0" scrolling="no" noresize="noresize" />');
      writeln('    <frame name="Werbung" src="/Werbung3.html" marginwidth="0" marginheight="0" scrolling="no">');
      writeln('  </frameset>');
	  
	    writeln('</frameset>');
      writeln('</html>');
      
      close();
    }
  }
