
function fensterOeffnen(url)
{
  neuesFenster = open(url,"externesFenster","width=600,height=400,scrollbars=1,resizeable=1,directories=0,status=0,location=0,menubar=0,toolbar=0,titlebar=0");
}


function TextfensterAnzeige(URL)
{
  parent.text.location.href = URL;
}


function makeframeset1(titel){
document.open();
document.write('<frameset cols="170,*" border=0 frameborder=0 framespacing=0>');
document.write('  <frameset cols="150,20" border=0 frameborder=0 framespacing=0>');
document.write('    <frameset rows="160,*" border=0 frameborder=0 framespacing=0>');
document.write('      <frame src="../static_logo.html" marginwidth=0 marginheight=0 name="logo" noresize scrolling=no>');
document.write('      <frame src="../navigate.html" marginwidth=0 marginheight=0 name="menu" noresize>');
document.write('    </frameset>');
document.write('    <frame src="../border.html" marginwidth=0 marginheight=0 name="border" noresize>  ');
document.write('  </frameset>');
document.write('  <frame src="' + titel + '" marginwidth=0 marginheight=0 name="text" noresize>');
document.write('</frameset>');
document.close();
}

function frametest1(name){
with(document){
  if(parent == self){
    makeframeset1(name);
  }
}
}


function makeframeset2(titel){
document.open();
document.write('<frameset cols="170,*" border=0 frameborder=0 framespacing=0>');
document.write('  <frameset cols="150,20" border=0 frameborder=0 framespacing=0>');
document.write('    <frameset rows="160,*" border=0 frameborder=0 framespacing=0>');
document.write('      <frame src="../../static_logo.html" marginwidth=0 marginheight=0 name="logo" noresize scrolling=no>');
document.write('      <frame src="../../navigate.html" marginwidth=0 marginheight=0 name="menu" noresize>');
document.write('    </frameset>');
document.write('    <frame src="../../border.html" marginwidth=0 marginheight=0 name="border" noresize>  ');
document.write('  </frameset>');
document.write('  <frame src="' + titel + '" marginwidth=0 marginheight=0 name="text" noresize>');
document.write('</frameset>');
document.close();
}

function frametest2(name){
with(document){
  if(parent == self){
    makeframeset2(name);
  }
}
}

function makeframeset(titel){
document.open();
document.write('<frameset cols="170,*" border=0 frameborder=0 framespacing=0>');
document.write('  <frameset cols="150,20" border=0 frameborder=0 framespacing=0>');
document.write('    <frameset rows="160,*" border=0 frameborder=0 framespacing=0>');
document.write('      <frame src="http://www.stat.uni-muenchen.de/sfb386/static_logo.html" marginwidth=0 marginheight=0 name="logo" noresize scrolling=no>');
document.write('      <frame src="http://www.stat.uni-muenchen.de/sfb386/navigate.html" marginwidth=0 marginheight=0 name="menu" noresize>');
document.write('    </frameset>');
document.write('    <frame src="http://www.stat.uni-muenchen.de/sfb386/border.html" marginwidth=0 marginheight=0 name="border" noresize>  ');
document.write('  </frameset>');
document.write('  <frame src="' + titel + '" marginwidth=0 marginheight=0 name="text" noresize>');
document.write('</frameset>');
document.close();
}

function frametest(name){
with(document){
  if(parent == self){
    makeframeset(name);
  }
}
}
