// Writeframes
// JavaScript Code Copyright (c) e-Brand Management Limited 2001
// This code may be copied and modified without permission or charge, provided
// this notice remains intact.
// Original source is at http://www.searchmechanics.com/learn/srf/writefs.js
// See http://www.searchmechanics.com/learn/srf/ for more details.


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 FRAMEBORDER="1" ROWS="120, *">',
	'<FRAME SRC="top.htm" NAME="banner">',
	'<FRAMESET FRAMEBORDER="1" COLS="172, *">',
		'<FRAME SRC="newcontents.htm" NAME="nav">',
		'<FRAME SRC="', bodyFrame, '" NAME="bodyFrame">',
	'</frameset>',
	'</frameset>'
	);
}
