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 cols="165,*" framespacing="0" frameborder="no" border="0">',
'	<frame src="nav_left.asp" name="NavigationFrame" frameborder="no" noresize marginwidth="0" marginheight="0" id="NavigationFrame">',
'	<frame src="', bodyFrame, '" name="ContentFrame" frameborder="no" noresize marginwidth="0" marginheight="0" id="ContentFrame">',
'</frameset>'
  );
}
