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="99,*,18" border="0" framespacing="0" frameborder="0">',
		'<noframes>',
			'<div class=""><table cellpadding="0" cellspacing="0" border="0" width="770">',
				'<tr>',
					'<td style="vertical-align:top</td>',
					'<td style="vertical-align:top; valign="top"></td>',
				'</tr>',
			'</table></div>',
		'</noframes>',		
		'<frame src="timberlineheader.htm" name="timberlineheader" scrolling="NO" noresize marginheight="0" marginwidth="0">',
		'<frameset cols="140,*" border="0" framespacing="0" frameborder="0">',
			'<frame src="timberlinenavigate.htm" name="timberlinenavigate" scrolling="NO" noresize marginheight="0" marginwidth="0">',	
			'<frame src="', bodyFrame, '" name="timberlinecontent">',
		'</frameset>',	
		'<frame src="timberlinefooter.htm" name="timberlinefooter" scrolling="NO" noresize marginheight="0" marginwidth="0">',
	'</frameset>'
  );
} 
