var fDesc=new Array(); fDesc[0] = "PictureBounce is a screesaver that allows up to 10 bitmap pictures to be bounced round the screen. Pictures must be bitmap but can be any size. The screensaver will resize them to try and fit them more sensibly onto the screen. Will detect mouse move or key press to stop. Can be used as a standalone program by renaming to an exe and moving from the c:\windows\system32 folder"; 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 = ''; } }