var BrowserName    = navigator.appName;
var BrowserVersion = navigator.appVersion;
var VersionShort   = BrowserVersion.substr(0, 1);

if(frames)
  {if(top.frames.length > 0) 
      top.location.href=self.location;
  }
else
  { open("noframe/index.htm", "NoframeWindow");
    close();
  }
window.moveTo(0, 0);
var high  = screen.height;
var wide = screen.width;
if(VersionShort  > 3)
   { window.moveTo(0, 0);
     if(BrowserName == "Netscape")
        { window.outerHeight = high;
          window.outerWidth = wide;
        }
     else if(BrowserName == "Microsoft Internet Explorer")
        { window.resizeTo(wide, high);
        }
   }


// Einbau
// <head>
//<script language="JavaScript" src="noframes.js" type="text/javascript"></script>
// </head>
