// layer reload
function reload(init) {
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.pgW=innerWidth; document.pgH=innerHeight; onresize=reload; }}
  else if (innerWidth!=document.pgW || innerHeight!=document.pgH) location.reload();
}
reload(true);

// frameset komplett
if ((top != self.parent.parent) || (top == self))
{
	top.location = '../index.html';
}
