// joust index page init.

// place <script src=..></script> immedialtely after </head> in your index.htm,
//  possibly followed by a <noscript>...</noscript> section.
//  Note: do NOT use <BODY> in your index.htm; it will be generated by the code below.

/* Joust Outliner Version 2.5.4
(c) Copyright 1996-2001, MITEM (Europe) Ltd. All rights reserved.
This code may be freely copied and distributed provided that it is accompanied by this 
header.  For full details of the Joust license, as well as documentation and help, go 
to http://www.ivanpeters.com/.
*/

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.php";

} else {
	initialise();
	var firstPage= pageFromSearch('home.php', theMenu, true);
	
	if (floatingMode) {
	  // frameset to use when menu is a separate floating window - if not cf below
		self.document.writeln('<frameset cols="100%" rows="*,48,1" onUnload="unloadFloating();" frameborder="1" framespacing="1" border="1" onResize="defaultResizeHandler()" id="editor">');
		self.document.writeln('  <frame name="menu" src="menu.php" scrolling="auto" marginwidth="1" marginheight="1" APPLICATION="yes">');
		self.document.writeln('  <frame name="menuCntrl" src="menucntrl.php" scrolling="no" marginwidth="0" marginheight="0" APPLICATION="yes">');
		self.document.writeln('  <frame name="work" src="work.php?page='+firstpage+'" scrolling="no" marginwidth="0" marginheight="0" APPLICATION="yes">');
		self.document.writeln('</frameset>');
	} else {
	  // frameset to use when menu is in left frame
		self.document.writeln('<frameset cols="100%" rows="27,*" frameborder="1" framespacing="1" border="1" onResize="defaultResizeHandler()" id="editor">');
		self.document.writeln('  <frame name="title" src="title.php" scrolling="no" noresize marginwidth="0" marginheight="0" APPLICATION="yes">');
		self.document.writeln('  <frameset cols="230,*" rows="100%">');
		self.document.writeln('    <frameset cols="100%" rows="*,48,1">');
		self.document.writeln('      <frame name="menu" src="menu.php" scrolling="auto" marginwidth="1" marginheight="1" APPLICATION="yes">');
		self.document.writeln('      <frame name="menuCntrl" src="menucntrl.php" scrolling="no" marginwidth="0" marginheight="0" APPLICATION="yes">');
		self.document.writeln('      <frame name="work" src="work.php?page=' +firstPage+ '" scrolling="yes" marginwidth="0" marginheight="0" APPLICATION="yes">');
		self.document.writeln('    </frameset>');
		self.document.writeln('    <frame name="text" src="' +firstPage +'" scrolling="auto" APPLICATION="yes">');
		self.document.writeln('  </frameset>');
		self.document.writeln('</frameset>');
  }
  
	window.name= "publisher";
}

