var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to setup various sounds to be played when new Gmail e-mails arrive in the inbox. The user chooses a sound file for all e-mails that arrive and a different one for e-mails containing a specified text string. There are check box options to disable either of these features and to load this software on startup or to start in the system tray."; 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 = ''; } }