var str = location.search;
var writeFrames = (str.indexOf("nowritefs")) && (top.window.length == 0);


if (writeFrames)
{
  if (str == "")
  {
    var mainFrame = window.location + "?nowritefs";
  }
  else
  {
    var mainFrame = window.location + "&nowritefs";
  }
  document.write(
  '<frameset rows="82,*,68" cols="*" framespacing="0" frameborder="NO" border="0">',
  '<frame src="../frames_nav.html" name="topFrame" scrolling="NO" noresize >',
  '<frame src="', mainFrame, '" name="mainFrame">',
  '<frame src="../jumpmenus.html" name="bottomFrame" scrolling="NO" noresize>',
'</frameset>'
  );
}

