var fDesc=new Array(); fDesc[0] = "Work Scheduler allows you to input your schedule for the upcoming week and, as long as the program is running in your system tray, it will remind you when you need to be at work. The tool provides time setting for each day of the week, customizable message and display options, system tray running to save space in your taskbar and on the desktop, alerts setting for days you need to be at work."; 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 = ''; } }