// START OF FRAMES SETUP

if (self.name == 'menu') {
	// Sometimes, Netscape will try to load this index inside the menu frame.  I haven't
	// worked out why but this will detect that situation and reset the location property.
	self.location.href = "menu.htm";
} else {
	initialise();
	var thePage = pageFromSearch('home.htm');

	self.document.writeln('<frameset framespacing="0" border="0" cols="196,15,101%" frameborder="0">');
	self.document.writeln('  <frameset rows="56,101%,50">');
	self.document.writeln('    <frame name="MenuTilte" src="menu-title.htm" target="main" scrolling="no" noresize>');
	self.document.writeln('    <frame name="menu" marginwidth="0" marginheight="0" scrolling="auto" noresize target="main" src="menu.htm">');
	self.document.writeln('    <frame name="menucntr" src="menucntrl.htm" scrolling="no" target="main" noresize>');
	self.document.writeln('  </frameset>');
	self.document.writeln('  <frame name="border" scrolling="no" src="border.htm" marginwidth="0" marginheight="0">');
	self.document.writeln('  <frame name="text"  src="' + thePage +'" scrolling="auto" marginwidth="0" marginheight="5">');
	self.document.writeln('</frameset>');

}

