function writeNavBar(fromIndex) {
	document.writeln('<a href="' + (fromIndex ? '' : '../') + 'base enum index.html">Base Enums</a>');
	document.writeln("|");
	document.writeln('<a href="' + (fromIndex ? '' : '../') + 'extended data type index.html">Ext. Data Types</a>');
	document.writeln("|");
	document.writeln('<a href="' + (fromIndex ? '' : '../') + 'table index.html">Tables</a>');
	document.writeln("|");
	document.writeln('<a href="' + (fromIndex ? '' : '../') + 'class index.html">Classes</a>');
	document.writeln("|");
	document.writeln('<a href="' + (fromIndex ? '' : '../') + 'interface index.html">Interfaces</a>');
	document.writeln("|");
	document.writeln('<a href="' + (fromIndex ? '' : '../') + 'kernel class index.html">Kernel Classes</a>');
	document.writeln("|");
	document.writeln('<a href="' + (fromIndex ? '' : '../') + 'kernel functions.html">Kernel Functions</a>');
}