        // BEGIN SlideShow v1.01
        // Must include 
        document.write('<TABLE BORDER=1 CELLSPACING=0 CELLPADDING=5 bordercolorlight="#000000" bordercolordark="#FFFFFF" bordercolor="#000000" bgcolor="#000000">');
        document.write('  <TR>');
        document.write('    <TD ALIGN=CENTER WIDTH="100%" BGCOLOR=#CCCCCC>');
        document.write('      <TABLE BORDER=2 CELLSPACING=0 CELLPADDING=0 bordercolorlight="#000000" bordercolordark="#FFFFFF" bordercolor="#000000" bgcolor="#000000">');
        document.write('        <TR>');
        document.write('          <TD ALIGN=CENTER WIDTH="100%" BGCOLOR=#CCCCCC>');

        if (linkornot==1) { document.write('<a href="javascript:transport()">'); }
        document.write('<img src="'+photos[0]+'" name="photoslider" style="filter:revealTrans(duration=2,transition=23)" border=0><BR>');
        if (linkornot==1) { document.write('</a>'); }

        document.write('          </TD>');
        document.write('        </TR>');
        document.write('      </TABLE>');
        document.write('    </TD>');
        document.write('  </TR>');
        document.write('  <FORM NAME=slideshow>');
        if (showdescriptions==1) {
          document.write('<TR>');
          document.write('  <TD ALIGN=CENTER WIDTH=100% BGCOLOR=#CCCCCC>');
          if (document.all) {
            document.write('<TEXTAREA NAME="desc" COLS="50" ROWS="3" WRAP="PHYSICAL" READONLY');
            document.write(' STYLE="font-weight: bold; color:#666666; background-color: #FFFFDD; font-size: 8pt; font-family: arial,verdana; font-style: normal"></TEXTAREA>');
          } else {
            document.write('<TEXTAREA NAME="desc" COLS="42" ROWS="3" WRAP="PHYSICAL" READONLY></TEXTAREA>');
          }
          document.write('  </TD>');
          document.write('</TR>');
        }
        document.write('  <TR>');
        document.write('    <TD ALIGN=CENTER WIDTH=100% BGCOLOR=#CCCCCC>');
        document.write('      <TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH=100%>');
        document.write('        <TR>');
        if (document.all) {
          document.write('        <TD WIDTH=33% ALIGN=CENTER>');
          document.write('          <span ID=imagecount NAME=imagecount STYLE="font-weight: normal; color:#666666; font-size: 8pt; font-family: arial,verdana; font-style: normal"></span>');
          document.write('        </TD>');
        }
        document.write('<TD ALIGN=CENTER>');
        if (document.all) {
          document.write('<input type="button" name="Previous" value=" << " onClick="slidechange(2);return false;"> &nbsp; ');
          document.write('<input type="button" name="Next" value=" >> " onClick="slidechange(3);return false;">');
        } else {
          document.write('<a href="#" onClick="slidechange(2);return false"><FONT FACE="Arial,Verdana" COLOR=#000000 SIZE=2>Previous Slide</FONT></a> &nbsp; ');
          document.write('<a href="#" onClick="slidechange(3);return false"><FONT FACE="Arial,Verdana" COLOR=#000000 SIZE=2>Next Slide</FONT></a>');
        }
        document.write('</TD>');
        if (document.all) {
          document.write('         <TD WIDTH=25% ALIGN=RIGHT>');
          document.write('           <FONT FACE=Arial,Verdana SIZE=1 COLOR=#666666>Image<BR>effects<BR></FONT>');
          document.write('         </TD>');
          document.write('         <TD WIDTH=8% ALIGN=RIGHT>');
          document.write('           <INPUT TYPE="Checkbox" NAME="fancyswitch" CHECKED NOTAB>');
          document.write('         </TD>');
        }
        document.write('        </TR>');
        document.write('      </TABLE>');
        document.write('    </TD>');
        document.write('  </TR>');
        document.write('  </FORM>');
        document.write('</TABLE>');

        // Set description for first image in slideshow
        if (document.all) {
          document.slideshow.Previous.disabled = true;
          imagecount.innerText="Image 1 of "+photos.length;
        }
        if (showdescriptions==1) { document.slideshow.desc.value=photosdesc[0]; }
        preloadedimages[0] = CacheImage(photos[0]);
        preloadedimages[1] = CacheImage(photos[1]);
        SlideReady = true;

        //
        // END SlideShow v1.01
