<% ' Enter the variables for the page. See the options file in the includes directory for ' choices to be used in this section. "Section" denotes the type of graphic that will ' appear in the top right hand corner of the page. section="onlocation" ' Enter the first graphic image number. Eg, if the first file is 00023_1.jpg, enter 1 ' Then enter the last graphic image number. Eg, if the last file is 00023_34.jpg, enter 34 ' Then enter the image series. Eg, in the previous two examples, the series is 00023 imageSeries = "00112" imageStart = 1 imageEnd = 114 imageStartForPage = request.querystring("imageStartForPage") if imageStartForPage = "" then ' Do not edit this next counter item imageCounter = 0 imageStartForPage = 1 if imageEnd < 25 then imageEndForThisPage = imageEnd else imageEndForThisPage = 25 end if else imageCounter = imageStartForPage imageEndForThisPage = imageStartForPage + 25 if imageEndForThisPage > imageEnd then imageEndForThisPage = imageEnd else 'do nothing! end if end if %>

Memorial Day Weekend 2003 - Oceano Dunes
By: Jim Suty

<% imageCurrent = imageStartForPage do until imageCounter = imageEndForThisPage response.write "" response.write "  " imageCounter = imageCounter + 1 imageCurrent = imageCurrent + 1 loop %>

<% if imageEnd > imageCurrent then imageCurrent = imageCurrent response.write "Next set of pictures >>" end if %>