<%@ Language=VBScript %>
<!-- #INCLUDE FILE="../aspcode/photos/main.asp" -->
<!-- #INCLUDE FILE="../aspcode/photos/display.asp" -->
<!-- Copyright 2000 - All Rights Reserved - See Readme.txt for details -->

<%
Dim g_szRootDir, g_szGfxPath
Dim g_szHomePage, g_bAllowDownloadSource, g_blnReloadPage

g_szTitle = "Photo Album" ' Title, appears on caption bar and as <H1>
g_szRootDir = "/photos/PhotoAlbums" ' Location of photo albums
g_szGfxPath="/aspcode/photos/" ' Where the graphics are stored. MUST END WITH '/'
' NOTE: The 'back.gif' background graphic MUST appear in the current dir

g_szHomePage = "/default.asp" ' Link back
g_bAllowDownloadSource=True ' The source is GPL, so you must provide some means of getting it
g_blnReloadPage=False ' By setting 'g_blnReloadPage' to True, the ASP page is reloading upon
' Next/Prev etc. This benefits in two ways:
' 1) The aspect ratio of the pictures is always correct
' 2) You get any associated text file (i.e. 'Me.jpg.txt') to be printed
' underneath the image.
g_ShowParentDirectories=False ' Shows the photo album directories above this one. (sub-dirs are always shown)

PhotoMain

%>