function checkFrameset() {

// 1. wird die Seite in einem Frameset aufgerufen?
 //  top.location.href = "frameset.html";

if (parent.frames.length == 0)
   {
   location.href= "frameset.html?" + location.href;
   }
 return
}
