// This file contains the values of global variables
// used in producing pages in SEARCH.EXE

PageHeadTemplate:
<TITLE>${PageTitle}</TITLE>
<H1 ALIGN=CENTER>${PageLabel}</H1>
<P>
${PageIntro}
<P>
<HR>


PageIntro:
Click on an image or highlighted text to follow a link.


PageTitle:
${PageFullDOSFileName}


PageLabel:
${PageFullDOSFileName}


BodyTag:
<BODY>


PageBodyTemplate:
${BodyTag}


//The value of ActualReturnLabel is set to PossibleReturnLabel
//if and only if the page has a parent page, otherwise it's blank
PageEndTemplate:
${ActualReturnLabel}
<P>
</BODY>

FileLeaderTemplate:
<TABLE BORDER>

FileEntryTemplate:
<TD>
  <CENTER>
    <A HREF="${AnchorFileName}">
      ${ImageTag}
    </A>
    <BR>${AnchorFileName}
    <BR>(${FileSizeInK}K)
    <BR>${ImagePersonName}
    <P>${Description}
  </CENTER>

FileTrailerTemplate:
</TABLE>

GroupLeaderTemplate:
<TR>


GroupTrailerTemplate:
</TR>


DirLeaderTemplate:
<TABLE BORDER>
<CAPTION>
Page List
</CAPTION>
<TR>
  <TH>Sample
  <TD>Page Name
  <TD>Size
</TR>

DirEntryTemplate:
<TR>
  <TH>
    <A HREF="${AnchorFileName}">
      ${ImageTag}
    </A>
  <TD>
    <A HREF="${AnchorFileName}">
      ${PageLabel}
    </A>
  <TD>
    ${TotalFileSizeInK}K
</TR>


DirTrailerTemplate:
</TABLE>


//Note=> ParentPageLabel is expanded using the variables of the parent
//       page not the page it's value appears in.
ParentPageLabel:  ${PageLabel}

//The following appears at the end of a child page.
//If the page has no parent this label does not appear.
PossibleReturnLabel:
<P><A HREF="${ParentPageAnchor}">Return to ${ParentPageLabel}</A>


ImageTag:
<IMG SRC="${ImageFileName}" WIDTH="${DisplayWidth}" HEIGHT="${DisplayHeight}">

//The value of ActualReturnLabel is set to PossibleReturnLabel
//if and only if the page has a parent page, otherwise it's blank
PageEndTemplate:
${ActualReturnLabel}
<P>
<ADDRESS>${PageTitle}/${PersonFullName}/${EMailAddress}</ADDRESS>
<P>
</BODY>
