// Create simple framset for FiBRE documents

url = window.location;

if (top==self) {
  document.write('</head>');
  document.write('<FRAMESET id=framesetBody COLS="210,*">');
  document.write('  <FRAME SRC="/menu.html" NAME="menu" NORESIZE>');
  document.write('  <FRAME SRC="' + url + '" NAME="main">');
  document.write('</FRAMESET>');
  document.write('</HTML>');
  main.document.location = url;
  document.close();
};
