
function makeNavbar() {
	var output = ' ';
	

	output += '<TABLE width="100%">';
	
	// NAVIGATION Section of navbar.
	output += '    	<TR>';
	output += '		   	<TD valign="top" colspan="2">';
	output += '		   	    <br>';
	output += '			    <CENTER>N A V I G A T I O N</CENTER>';
	output += '				<DIV Class="dashedLine">&nbsp;</div>';
	output += '				<a href="../../../hesperiaanimalcontrol/index.html">Lost/Found Dogs</a><br>';	
	
	output += '			    <DIV class="solidLine">&nbsp;</div>';
	output += '		</tr>';

	// ARCHIVE Section of navbar.
	/*output += '		<tr>';
    output += '			<TD colspan="2">';
	output += '				<br>';
	output += '				<CENTER>A R C H I V E S</center>';
	output += '				<div class="dashedLine">&nbsp;</div><br>';
	output += '				<a href="01-2008.html">Current Month</a><br>';	
	output += '				<a href="02-2008.html">February 2008</a><br>';		
	output += '				<a href="03-2008.html">March 2008</a><br>';
	output += '				<a href="04-2008.html">April 2008</a><br>';	
	output += '				<a href="05-2008.html">May 2008</a><br>';
	output += '				<a href="06-2008.html">June 2008</a><br>';
	output += '				<a href="07-2008.html">July 2008</a><br>';
	output += '				<a href="08-2008.html">August 2008</a><br>';
	output += '				<a href="09-2008.html">September 2008</a><br>';<br>
	output += '				<a href="10-2008.html">October 2008</a><br>';
	output += '				<a href="11-2008.html">November 2008</a><br>';
	output += '				<a href="12-2008.html">December 2008</a><br>';
	output += '				<div class="solidLine">&nbsp;</div>';
    output += '			</TD>';
    output += '		</TR>';*/

	output += '</TABLE>';
		
	return output;
}

