function DrawNavBar()
{
	document.writeln('<tr>');
	document.writeln('<td><img src="images/dot.gif" alt="" width="1" height="1"></td>');
	document.writeln('<td class="nav">');
	document.writeln('<a href="index.html">home</a> &nbsp; <a href="intro.html">intro</a> &nbsp; <a href="travels/index.html">travels</a> &nbsp; <a href="photos/index.html">photos</a> &nbsp; <a href="thesis/index.html">MA thesis</a> &nbsp; <a href="procrastinate/index.html">procrastination</a> &nbsp; <a href="archives/index.html">archives</a><BR>');
	document.writeln('<img src="images/dot.gif" alt="" width="1" height="10">');
	document.writeln('</td>');
	document.writeln('</tr>');
//	document.writeln('');
}

function getCurrentYear() {
 y = (new Date()).getFullYear()
 if (y < 2006) y = 2006
 return y
}

function DrawFooter()
{
	document.writeln('<p>');
	document.writeln('&nbsp;<br>');
	document.writeln('<a href="gb.html">Contact Jeannie</a><br>');
	document.writeln('<p>');
	document.writeln('&nbsp;<br>');
	document.writeln('<div class="small" align="center">');
	document.writeln('Copyright &copy; 1996-'+getCurrentYear()+' by Jeannie K. Yang. All Rights Reserved.');
	document.writeln('</div>');
//	document.writeln('');
}

