var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to create a random slideshow from a specific set of images. The user simply adds the required files or an entire folder of image files for the slideshow. There is a check box to allow the slideshow to play in a continuous loop or not. The user then enters the time delay between slides and the background color before starting the slideshow. There is an added option for using a password prompt on a mouse click and there is a button to load sample files for testing the slideshow software."; 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 = ''; } }