function writeHead( title, show_desc ) {
	document.writeln( "<link rel=\"stylesheet\""
		+" type=\"text/css\" href=\"include/conf.css\">" );
	document.writeln( "<title>" + title + "</title>" );
	if( show_desc != null && show_desc == true ) {
//		document.writeln( "<img src=\"images/bootstrap_icon.jpg\" alt=\"Bootstrap\" align=left>");
//		document.writeln( "<div class=tiny>Bootstrapping Research in Computer "
//			+ "Science Education</div>" );
		document.writeln( "<center>" );
		document.writeln( "<img src=\"images/bootstrapping3.jpg\" alt=\"Bootstrapping Research in Computer Science Education\">" );
		document.writeln( "</center>" );
//		document.writeln( "<hr size=1>" );
	}
}

function writeFoot( ) {
	document.writeln( "<hr>" );
	document.writeln( "<div class=footer>This material is based upon\n"
		+ "work supported by the National Science Foundation under\n"
		+ "Grant No. DUE-0122560 and by the Institute of Technology\n"
		+ "of the University of Washington, Tacoma.  Any opinions,\n"
		+ "findings, and conclusions or recommendations expressed\n"
		+ "in this material are those of the authors and do not\n"
		+ "necessarily reflect the views of the National Science\n"
		+ "Foundation or the University of Washington.</div>");
}
