

//  **  **  **  **  **  **  **  **  **  **  **  **  **  PhotoFootRow(str)
function PhotoFootRow(num)  {
		document.write("<tr bgcolor=\"#000000\">");
		document.write("<td><div align=\"center\">" + num + "<br>photo by <A HREF=\"mailto:edmag@earthlink.net?Subject=Medicine Retreat photo " + num + "\">edmag</a></div></td></tr>");

}  // end function PhotoFootRow(str)



function NavPrevNext(prevNum,nextNum) {
	//  alert("NavPrevNext(" + prevNum + ", " + nextNum + ")");
	if (prevNum == "") {
		// skip it
	} else {
		document.write("<a href='image" + prevNum + ".htm'><img src='images/ArrowLeft.gif' border=0></a>"); 
	}
	document.write("<img src='graphics/dot.gif' height=1 width=100 border=0>"); 
	if (nextNum == "") {
		// skip it
	} else {
		document.write("<a href='image" + nextNum + ".htm'><img src='images/ArrowRight.gif' border=0></a>");
	}
}  // end function NavPrevNext(9,9)
