<!--
function crumb_trail(title) {

    loc = document.location.href;

    document.writeln('<div id="crumb_1">');
    if (loc.indexOf('ORACLEnotes') > -1) {		// do this if it is ORACLEnotes
	document.writeln('    <a href="http://ist.uwaterloo.ca/~baumbach/ORACLEnotes/index.html">Main Menu</a>');
    }
    else if (loc.indexOf('ORACLE10g/index.html') > -1) {// do this if it is ORACLE10g/index.html
	document.writeln('    <a href="http://ist.uwaterloo.ca/~baumbach/ORACLEnotes/index.html">Menu Menu</a>');
    }
    else if (loc.indexOf('ORACLE10g') > -1) {		// do this if it is 10g_ page
	document.writeln('    <a href="http://ist.uwaterloo.ca/~baumbach/ORACLE10g/index.html">Oracle10g Menu</a>');
    }
    document.writeln('</div>');

    document.writeln('<div id="crumb_2">');
    if (loc.indexOf('ORACLE10g/index.html') > -1) {	// do this if it is ORACLE10g/index.html
	document.writeln('    Oracle10g Menu');
    }
    else if (loc.indexOf('ORACLE10g') > -1) {		// do this if it is ORACLE10g/index.html
	document.writeln('    Oracle10g Features');
    }
    if (loc.indexOf('BR_') > 0) {			// skip if current page is not BR_
	document.writeln('    Backup / Recovery');
    }
    if (loc.indexOf('LOCAL_') > 0) {			// skip if current page is not LOCAL_
	document.writeln('    Localisms');
    }
    if (loc.indexOf('MAIN_') > 0) {			// skip if current page is not MAIN_
	document.writeln('    Startup');
    }
    if (loc.indexOf('MISC_') > 0) {			// skip if current page is not MISC_
	document.writeln('    Miscellaneous');
    }
    if (loc.indexOf('ST_') > 0) {			// skip if current page is not ST_
	document.writeln('    Security / Tuning');
    }
    if (loc.indexOf('STARTUP_') > 0) {			// skip if current page is not STARTUP_
	document.writeln('    Startup');
    }
    if (loc.indexOf('UNIX_') > 0) {			// skip if current page is not UNIX_
	document.writeln('    UNIX');
    }
    if (loc.indexOf('VENDOR_') > 0) {			// skip if current page is not VENDOR_
	document.writeln('    Vendor');
    }
    document.writeln('</div>');

    document.writeln('<div id="crumb_3">' + title + '</div>');

    document.writeln('<div id="crumb_4">');
    document.writeln('    <!-- ********* "Valid XHTML 1.0! ********* -->');
    document.writeln('    <a href="http://validator.w3.org/check?uri=referer"><img');
    document.writeln('    src="Images/valid-xhtml10.gif" border="0"');
    document.writeln('    alt="Valid XHTML 1.0!" height="31" width="88" /></a>');
    document.writeln('    <!-- ************************************* -->');
    document.writeln('</div>');

    document.writeln('<div id="crumb_hr"></div>');

}
//-->

