<!-- This makes sure the current page is *only* used in my frames.  Then, it synchronizes the TOC.  Based on frames2.js in PhotoAlbum.hhp
function Sync(pic) {
	if (self==parent)
	{
		/* document.write('<META HTTP-EQUIV="refresh" CONTENT="0; 		URL=index.html">') */
		location.replace('index.html');
	}
//	else if(pic != "") {
	else if(pic.length != 0) {
		parent.Contents.myShow(pic);
	}
}
// -->

