var str = location.search;
var writeFrames = (str.indexOf("nowritefs")) && (top.window.length == 0);
if (writeFrames) {
	if (str == "") {
		var mainFrame = window.location + "?nowritefs";
	}
	else {
		var mainFrame = window.location + "&nowritefs";
	}
	document.write (
	'<frameset  rows="152,*" border="0" frameborder="0" framespacing="0">',
		'<frame src="about_top.htm" marginwidth="0" marginheight="0" scrolling="no" frameborder="0">',
		'<frameset  cols="186,*" border="0" frameborder="0" framespacing="0">',
			'<frame src="leftmain.htm" marginwidth="0" marginheight="0" scrolling="no" frameborder="0">',
			'<frame src="', mainFrame, '" name="main" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0">',
		'</frameset>',
	'</frameset>'
	);
}