var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to play an MP3 file at a specified time. The user simply adds the required MP3 file and sets the alarm. Current time is displayed (using the system time). There is an option to load the software on Windows startup and to start it in the system tray. This software can provide a pleasant alarm, playing a favorite tune instead of an unpleasant alarm sound."; 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 = ''; } }