// javascript to produce the navigation table used at top of each page in section brnd


var Start 	= ' <p class="navtop"> '
var Close 	= ' </p> '

Line1	 = ' [ <a href="#TOP">Top of Page</a> ] '
Line1	+= ' [ <a href="brnd.htm">Top of Section</a> ] '


document.write ( Start + Line1 + Close )


