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="155,*" framespacing="0" border="0" frameborder="0">',
'<frame name="contents" target="main" src="indexLT.htm" scrolling="auto" style="font-family: Century Gothic" noresize marginwidth="6">',
'<FRAME name="main" src="' + bodyFrame + '" target="_self" scrolling="auto" noresize>',
'</frameset>'
);
}
