<!--  used to create previous and next links for featured photo pages//-->
<!-- set limit below, in featsubmenu.js  & at top of features page equal to the number of pages //-->
pages=38
	if (fp > 1) {			<!-- link to previous except on first page -->
		document.write('<br /><a href="feat')
		if ((fp-1) < 10) {
			document.write('0')			<!-- insert zero for single digit pages -->
		}
		document.write(fp-1)
		document.write('.html">Previous Feature Page</a>')
	}
	document.write('<br />')
	if (fp < pages) {
		document.write('<br /><a href="feat')	<!-- if last page no link to next -->
		if ((fp+1) < 10) {
			document.write('0')			<!-- insert zero for single digit pages -->
		}
		document.write(fp+1)			<!-- else add page number to link -->
		document.write('.html">Next Feature Page</a>')
	}