function logDocPageLoad() {
	callFooterLogFunction();
}

function callFooterLogFunction() {
	if(top.frames["footer"].logDocPageLoad) {
		top.frames["footer"].logDocPageLoad();	
	}
	else {
		setTimeout("callFooterLogFunction()", 500);
	}
}

if (self.name == 'menu') {
	self.location.href = "menu.htm";
} else {
	initialise();
	var thePage = pageFromSearch('treetitl.html', theMenu, true);
	
		self.document.writeln('<frameset cols="100%" rows="62,*,20" onResize="defaultResizeHandler();" frameborder="no" border="0" framespacing="0">');
		self.document.writeln('  <frame name="header" src="../docuinovdocx/hdr_doc.html" scrolling="no" noresize marginwidth="0" marginheight="0" APPLICATION="yes">');
		self.document.writeln('  <frameset cols="230,*,0" rows="100%" frameborder="yes" border="5" bordercolor="#BABDB6" framespacing="5" onLoad="loaded = true">');
		self.document.writeln('    <frameset cols="100%" rows="*,0" frameborder="no" border="0" framespacing="0">');
		self.document.writeln('      <frame name="menu" src="../docuinovdocx/menu.htm" scrolling="auto" marginwidth="1" marginheight="1" APPLICATION="yes">');
		self.document.writeln('      <frame name="menuChildLoader" src="../docuinovdocx/blank.html" scrolling="no" marginwidth="0" marginheight="0" APPLICATION="yes">');
		self.document.writeln('    </frameset>');
		self.document.writeln('    <frame name="text" onload="logDocPageLoad()" src="' + thePage +'" scrolling="auto" APPLICATION="yes">');
		self.document.writeln('  </frameset>');
		self.document.writeln('  <frame name="footer" src="/inc/footer_frames.html" scrolling="no" noresize marginwidth="0" marginheight="0" APPLICATION="yes">');
	        self.document.writeln('</frameset>');
}