function NeuesFenster(Link,w,h,Scroll,Resize,Toolbars)
{
  if (Toolbars==1) Toolbars=",menubar=yes,toolbar=yes,status=yes,location=yes";
  else             Toolbars="";
  if (w>1024) { w=1024; Scroll="yes"; Resize="yes"; }
  if (h>768)  { h=768;  Scroll="yes"; Resize="yes"; }
  x=(1024-w)/2;
  y=(768-h)/2;
  NewWindow=open(Link,"Content"+parseInt(100.0*Math.random()),
                      "top="+y+",left="+x+",height="+h+",width="+w+",scrollbars="+Scroll+",resizable="+Resize+Toolbars);
}

function LoadFrame(Link,FrameName)
{
  Frame=eval("parent."+FrameName);
  Frame.location.href=Link;
}
