/*
-----------------------------------------------------------
Reload des Inhaltsverzeichnis (onclick)                        
-----------------------------------------------------------
*/
function refresh1(seite) 
 {
parent.inhalt.location.reload();
parent.main1.location.href = seite;
};



/*
-----------------------------------------------------------
Reload der Menüleiste und des Inhalts bei Stephen (onclick)
-----------------------------------------------------------
*/
function refresh2()
  {
  parent.menu.location.reload();
  top.inhalt.location.reload();
  };


/*
-----------------------------------------------------------
Reload der Menüleiste bei AK-Mitgliedern (onclick)         
-----------------------------------------------------------
*/
function refresh3()
  {
  parent.menu.location.reload();
  };


/*
-----------------------------------------------------------
Öffnet Startseite statt augewählter Seite, wenn diese in einem eignen Fenster aufgerufen wird
-----------------------------------------------------------
*/
function allframes(home)
  {
  if (parent.location.href == self.location.href)
    {
  window.location.href = home
    }
  };


/*
-----------------------------------------------------------
Abfrage der Anzahl der Frames beim ersten Aufruf der Site (onload); öffnet die Site in neuem Fenster falls Anzahl nicht gleich 3
-----------------------------------------------------------
*/
function breakout()
  {
  if (top.frames.length == 3) {} else {
  window.open("05home.htm")}
  };
  
