function image_effects() { try { //var selobj = document.getElementById('slidehow_transition'); //var selIndex = selobj.selectedIndex; //set the transition to the number selected in the list slideShow.filters.revealTrans.Transition=23 slideShow.filters.revealTrans.apply() slideShow.filters.revealTrans.play() } catch (e) {} } //function to get the previous image in the array function previous_image(chk) { if (document.getElementById(chk).checked==false) { if (num>0) { num-- image_effects() //set the SRC attribute to let the browser load the preloaded images document.images.slideShow.src=image[num] } if (num==0) { //if first image is displayed num=image.length num-- image_effects() document.images.slideShow.src=image[num] } } } //function to get the next image in the array function next_image(chk) { if (document.getElementById(chk).checked==false) { if (num