function SeiteLaden(URL)
{
  if (URL=="index")
  {
    Seite = window.location.search;
    if (Seite != "")
    {
      parent.inhalt.location.href = Seite.slice(1);
    }
  }
  else if (self == top)
  {
    window.location.href = "index.htm?"+window.location.href;
  }
}

