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="130, *">',
    '<FRAME SRC="top.htm" NAME="top" scrolling="NO" noresize >',
    '<FRAMESET FRAMEBORDER="0" ROWS="*, 62">',
     
      '<FRAME SRC="', bodyFrame, '" NAME="bodyframe">',
 '<FRAME SRC="bottom.htm" NAME="bottom" scrolling="NO" noresize>',
    '</FRAMESET>',
  '</FRAMESET>'
  );
}
