      
 function checkFrameset()
 {
//  alert ("aufruf index: "+location.pathname);
  if(!parent.home)
      location.href="index.html?" + location.pathname;
 }

 function checkaufruf()
 {
      
          var antwort = confirm("Diese Seite ist eine Unterseite - Möchten Sie die Hauptseite laden?");
          if (antwort)
          {
                 checkFrameset();
            }    
 }
 //              window.location = "index.html" ;
   //             checkFramecall();
   if(self.name==top.name)
   {
        checkFrameset();
    }

