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 framespacing="0" border="false" frameborder="0" rows="119,*">',
  '<frame name="header" scrolling="no" noresize target="contents" src="header.html" marginwidth="0" marginheight="0">',
  '<frameset cols="115,*">',
    '<frame name="menu" target="main" src="detectflash.html" scrolling="auto" marginwidth="0" marginheight="0" noresize>',
     '<frameset framespacing="0" border="false" frameborder="0" rows="25,*">',
      '<frame name="corners" src="corners.html" scrolling="no" marginwidth="0" marginheight="0" noresize>',
       '<frameset framespacing="0" border="false" frameborder="0" cols="*,4">',
        '<frame name="main" src="', bodyFrame, '" scrolling="auto" marginwidth="0" marginheight="0" noresize>',
         '<frameset framespacing="0" border="false" frameborder="0" cols="4,*">',
          '<frame name="rightside" src="rightside.html" scrolling="no" marginwidth="0" marginheight="0" noresize>',
         '</frameset>',
       '</frameset>',
     '</frameset>',
  '</frameset>',
  '</frameset>'
  );
}

