function writeOnePhotoLink(desturl, pagedate, pagetitle, areyouhere) {
	document.write("\t<li class='photo-page-link'>" +
		( (areyouhere) ? "<span class='photo-page-link-youarehere'>" : "") + 
		"<a href='" + desturl + "'>" + pagetitle + "</a>" + 
		( (areyouhere) ? "</span>" : "") + "</li>\n");
	return true;
}

function writePhotoLinks(youarehere) {
	document.write("<div class='photo-page-list'><ul class='photo-page-list'>\n");
	document.write("<li class='photo-page-link-head'><a href='./photos/index.html'>Photo Scrapbook Index</a></li>\n");
	writeOnePhotoLink("./photos/2000-06-construction/index.html", "Jun 2000", "1. Early SOL Set Construction", (youarehere == 1) );
	writeOnePhotoLink("./photos/2000-07-painting/index.html", "Jul 2000", "2. Set Painting and Filming Theater Segments", (youarehere == 2) );
	writeOnePhotoLink("./photos/2000-08-filming-sol/index.html", "Aug 2000", "3. Filming Episode 1 SOL Segments", (youarehere == 3) );
	writeOnePhotoLink("./photos/2000-09-filming-d13/index.html", "Sep 2000", "4. Filming Episode 1 Deep 13b Segments", (youarehere == 4) );
	writeOnePhotoLink("./photos/2001-04-f02/index.html", "Apr 2001", "5. Filming Episode 2", (youarehere == 5) );
	writeOnePhotoLink("./photos/2002-12-f03/index.html", "Dec 2002", "6. Filming Episode 3", (youarehere == 6) );
	writeOnePhotoLink("./photos/2010-12-production/index.html", "Dec 2010", "7. Episodes 4 & 5 Production", (youarehere == 7) );
	writeOnePhotoLink("./photos/2011-06-production/index.html", "Jun 2011", "8. Filming Episode 4 & 5 Theater Segments", (youarehere == 8) );
	document.write("</ul></div>\n");
	return true;
}


