
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-2005.html">Current Month</a><br>';	
	output += '				<a href="02-2005.html">February 2005</a><br>';		
	output += '				<a href="03-2005.html">March 2005</a><br>';
	output += '				<a href="04-2005.html">April 2005</a><br>';	
	output += '				<a href="05-2005.html">May 2005</a><br>';
	output += '				<a href="06-2005.html">June 2005</a><br>';
	output += '				<a href="07-2005.html">July 2005</a><br>';
	output += '				<a href="08-2005.html">August 2005</a><br>';
	output += '				<a href="09-2005.html">September 2005</a><br>';<br>
	output += '				<a href="10-2005.html">October 2005</a><br>';
	output += '				<a href="11-2005.html">November 2005</a><br>';
	output += '				<a href="12-2005.html">December 2005</a><br>';
	output += '				<div class="solidLine">&nbsp;</div>';
    output += '			</TD>';
    output += '		</TR>';*/

	output += '</TABLE>';
		
	return output;
}


