<!---

function is_msie()
{
return (navigator.appName == "Microsoft Internet Explorer");
}

function Framing()
{ 
if (this.document == top.document || 
top.location.host != this.location.host)
{
    var pathprefix = location.protocol + '//'
    + location.host
    + location.pathname.substring(0,
    location.pathname.lastIndexOf('/')+1);

    var doctitle = document.title;
    document.clear();
    document.open("text/html");
    document.writeln('<html>\n<head><title>'+doctitle+
    '</title></head>');
    document.writeln
    ('<frameset rows="75,85%" framespacing="0" border="0" frameborder="0" noresize>'+
    '<frame src="/kopfpeter.htm" name="kopfpeter" scrolling=no marginwidth="1" marginheight="1">'+
    '<frameset cols="185,85%" frameborder="0" framespacing="0" border="0">'+
    '<frame src="/nav/leiste1pe.htm" name="leiste" marginwidth="1" marginheight="1" noresize>'+
    '<frame src="'+top.location.href+'" name=Hpeter marginwidth="1" marginheight="1">'+
    '</frameset></html>'
    );
    document.close();
    return true;
} 
return false;
}

function msieFraming()
{
    if (is_msie())
   {
      if (Framing())
      {
       window.setTimeout('top.frames["Hpeter"].location.href = '+'"'+top.location.href+'";',10);
      }
   }
}

function netscFraming()
{
  if (!is_msie()) Framing();
}

msieFraming();
// --->

