
/* Frame aufrufen, falls er fehlt */

  function checkFrameset() 
  {
    if(!parent.Leiste && location.hash == "")
      location.href="Frames.htm?" + location.pathname;
    parent.focus();
  }

/* Frame nachladen, falls er fehlt */

  function checkFramecall() 
  {
    var Adressanhang=location.search;
    if(Adressanhang)
      frames.Haupt.location.href=Adressanhang.substring(1,Adressanhang.length);
  }

/* Beliebiges separates Fenster öffnen */

  function Oeffne(Filename, Width, Height)
  {
    var Params = "left=200,top=200,dependent=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,width="+Width+",height="+Height;
    F1 = window.open(Filename, "Fenster", Params);
    F1.focus();
  }


