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="141,629,*" scrolling="no" frameborder="0" resize="no" border="0" noresize framespacing="0" marginheight="0" marginwidth="0">',
	  '<FRAME name="cp_menu" src="pages/menu.html" scrolling="no" frameborder="0" resize="no" border="0" noresize marginheight="0" marginwidth="0">',
	
	        '<FRAMESET rows="173,*" scrolling="no" frameborder="0" resize="no" border="0" noresize framespacing="0" marginheight="0" marginwidth="0">',
	         '<FRAME name="cp_header" src="pages/header.html" scrolling="no" frameborder="0" resize="no" border="0" noresize marginheight="0" marginwidth="0">',
	         '<FRAME name="cp_main" src="' + bodyFrame + '" scrolling="auto" frameborder="0" resize="no" border="0" noresize marginheight="0" marginwidth="0">',
		'</FRAMESET>',
	
	   '<FRAME name="cp_right" src="pages/right.html" border="0" scrolling="no" frameborder="0" resize="no" noresize marginheight="0" marginwidth="0">',
	'</FRAMESET>'
		);

	
}

