// Erstellt von post@marion-schoelzel.de

function framecheck(framefile, framename) {
   if (parent.frames.length != 1) {
      top.location.href = framefile;
   }
   else {
      if (parent.frames[0].name != framename) {
         top.location.href = framefile;
      }
   }
}

function topcheck(website) {
   if (parent.frames.length > 0) {
      top.location.href = website;
   }	
}