{
HTML_AJAX.grab(encodeURI('rpc.php?action=reset_slideshow'));
nextSlide();
+ setInterval("nextSlide()", 3000);
}
function nextSlide()
{
next_img = HTML_AJAX.grab(encodeURI('rpc.php?action=get_next_slideshow_img'));
document.getElementById('slide_img').src = next_img;
- setTimeout("nextSlide()", 3000);
}
+function autoBrowse()
+{
+ var next_link = document.getElementById('next_link').href;
+ window.location.href = next_link;
+ setTimeout("autoBrowse()", 5000);
+}
+
var startup = 1;
var calendar_shown = 0;
var calendar_mode = '';
-
+var autobrowse = 0;
{/if}
</td>
<td class="index_header" style="text-align: right;">
+ <a href="javascript:autoBrowse();"><img src="resources/slideshow.png" /></a>
{if $extern_link }
<a href="{$extern_link}" title="Use this link to return to the current view"><img src="resources/link.png" /></a>
{/if}
{ if $next_url == "" }
<img src="resources/arrow_right_gray.png" alt="last photo reached" />
{ else }
- <a href="{$next_url}" onclick="click(this);">
+ <a href="{$next_url}" onclick="click(this);" id="next_img" >
<img src="resources/arrow_right.png" alt="next photo" />
</a>
{ /if}
{ /if}
{ if $next_img }
<u><img src="resources/photo.png" alt="photo icon" /> Next:</u><br />
- <a href="{$next_url}" onclick="click(this);">
+ <a href="{$next_url}" onclick="click(this);" id="next_link">
<img src="phpfspot_img.php?idx={$next_img}&width={$mini_width}" /><br />
</a>
{ /if}