function BuildMenu (pv_sItem){
/* NoLink tells us which menu item should have a dead hot link.
0 - All should be hot.
1 - First item should not be hot, etc.
*/

	var sStr;
	var iStartPos = 0;
	var iEndPos;
	
	sStr =
		'&nbsp;<li><a href="index.html">Introduction</a><br>' +
		'&nbsp;<li><a href="intellectual.html">Intellectual Experience</a><br>' +
		'&nbsp;<li><a href="practical.html">Practical/Service Experience</a>&nbsp;&nbsp;<br>' +
		'&nbsp;<li><a href="technology.html">Technology Experience</a><br>'+
		'&nbsp;<li><a href="teaching.html">Teaching Experience</a><br>' +
		'&nbsp;<li><a href="leadership.html">Leadership Experience</a><br>' +
		'&nbsp;<li><a href="acknowledgements.html">Acknowledgements</a><br>' +
		'&nbsp;<li><a href="siteindex.html">Site Index</a><br>';
	
	if (pv_sItem == '') { //all hot
		sMenu = sStr;
	}
	else {
		iEndPos = sStr.indexOf (pv_sItem + '<'); // find the start of the item name
		iStartPos = sStr.lastIndexOf ('<a', iEndPos); // find the start of the "<a href" tag that comes before it

		sMenu = sStr.substring(0, iStartPos); // extract everything left of "<a href"

		sMenu += pv_sItem;  // Append the menu text
		sMenu += sStr.substr (iEndPos + pv_sItem.length + 4); // Extract the remainder of the string after the closing anchor tag
	}
	document.write ('<ul>');
	document.write (sMenu);
	document.write ('</ul>');
	document.write ('<hr/>');
	document.write ('<ul><li><a href="coursework.html" target="blank">Coursework</a></li>');
	document.write ('</ul>');
	document.write ('<p><a href="http://www.ischool.washington.edu/" target="blank">The Information School</a></p>');
}



function BuildFooter () 
	{
		document.write (
			'<center>' +
			'<font size="1">'+
			'This page was last updated on ' +document.lastModified+ '.<br>'+
			'</font>' +
			'</center>' ); 
	 }



