function LoadFrames(link1, link2, link3, link4)
{
// link1 bezieht sich immer auf MainFrame
// link2 bezieht sich immer auf MenuFrame
// link3 bezieht sich immer auf RubrikFrame
// link4 bezieht sich immer auf ReiseFrame
  if (link1 != '')
    {
    parent.frames.MainFrame.location.href=link1;
    }
  if (link2 != '')
    {
    parent.frames.MenuFrame.location.href=link2;
    }
  if (link3 != '')
    {
    parent.frames.TopRubrikFrame.location.href=link3;
    }
  if (link4 != '')
    {
    parent.frames.RubrikFrame.location.href=link4;
    }
  
} 


function OpenOnLoad(link1, link2, link3)
{
  if (link1 != '')
    {
    parent.frames.MainFrame.location.href=link1;
    }
  if (link2 != '')
    {
    parent.frames.TopRubrikFrame.location.href=link2;
    }
  if (link3 != '')
    {
    parent.frames.RubrikFrame.location.href=link3;
    }
}


function OpenRemote(remotelink)
  {
    link = "remote/"+remotelink+".html";
    remote = window.open(link, "remotewin", "toolbar=no,menubar=no,scrollbars=auto,resizable=yes,status=yes,location=no,directories=no,copyhistory=no,height=500,width=300");
    remote.focus();
  }


function Lade(link, keepfocus)
{
  if (link != '')
    {
    link = "../"+link+".html";
    window.opener.location.href=link;
    if (!keepfocus) {window.opener.focus()};
    }
}