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 ROWS="133,*,20" border="0" framespacing="0" frameborder="no">',
    '<FRAME SRC="header_art.htm" NAME="header" noresize scrolling="no">',
	'<FRAME SRC="', bodyFrame, '" NAME="bodyframe" noresize>',
    '<frame src="bas.htm" name="bas" noresize scrolling="no">',
  '</FRAMESET>'
  );
}      
