Almost easier done than said. Remove this from the script:
Code:
// THIS WILL DISABLE THE BUTTONS (IE-ONLY)
document.SlideShow.Previous.disabled = (NextSlide == 0);
document.SlideShow.Next.disabled = (NextSlide ==
(Slides.length-1));
Then you can use this format for the controls:
HTML Code:
<td><input type="image" name="Previous" src="prev.gif" onClick="ShowSlide(-1);return false"></td>
<td align="right"><input type="image" name="Next" src="next.gif" onClick="ShowSlide(1);return false"></td>
No need to get rid of the form after all.
Bookmarks