function SeiteLaden(URL)
{
  if (URL=="index")
  {
    Seite = window.location.search;
    if (Seite != "")
    {
      parent.HF.location.href = Seite.slice(1);
    }
  }
  else if (self == top)
  {
    if ((window.document.frames) || (navigator.appVersion.substring(0,1) >= "4"))
      window.location.href = "index.htm?"+window.location.href;
  }
  else
  {
    if (URL.length>0) parent.SetMenuByName(URL);
    if (window.location.host=="www.dampflokbilder.de")
    {
      parent.HF.window.document.images['URL'].src = "basic/url2.gif";
    }
  }
}

function Zoom(Bild)
{
  if (document.getElementsByTagName)
  {
    window.open('zoom.htm?'+Bild.src,'zoom','dependent=yes, resizable=yes, width=610, height=450');
  }
}