You have placed the in body call for the script in an invalid location:
Code:
<tr>
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 315, 210, 3, 3000, 1, "R")
</script>
</tr>
If you want it in that tr, it must also be within a td. Other browsers error correct that for you, FF does not. Do it like so:
Code:
<tr><td>
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 315, 210, 3, 3000, 1, "R")
</script></td>
</tr>
Bookmarks