var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to play a playlist of video files randomly. The user simply adds the required video files or an entire folder. There is a check box to start each video at a random point in its playtime. Play options are: to play 1 video full screen, to play 1 video in a sizeable screen, to play a user specified number of videos at once. There is an added option for using a password prompt on a mouse click and a check box to activate infinite loop playback."; 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 = ''; } }