var str = location.search;
var writeFrames = (str.indexOf("nowritefs")) && (top.window.length == 0);
if (writeFrames)
{
  if (str == "")
  {
    var bodyFrame = window.location + "?nowritefs";
  }
  else
  {
    var bodyFrame = window.location + "&nowritefs";
  }
  document.write(
  '<FRAMESET FRAMEBORDER="0" ROWS="106, *" frameborder="yes" border="-2">',
    '<FRAME SRC="menub.htm" NAME="top" scrolling="no" noresize >',


      '<FRAME SRC="', bodyFrame, '" NAME="bodyframe">',

    '</FRAMESET>',
  '</FRAMESET>'
  );
}