var fDesc=new Array(); fDesc[0] = ""10. Slide Show" is a program designed to display a series of images one after another. These images can be in a variety of formats including Bmp, Gif and Jpeg. You can either create a slide show file, or slide show from a folder in which every compatible image will be displayed. Whichever method you use, you can set the delay, background colour, music and if the images are shuffled or looped. You can also choose to stretch each image to fill the screen while maintaining the aspect ratio, or retain its dimensions. When the show is running you can use hotkeys to skip back or forward a frame, pause, delete or quit."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }