var fDesc=new Array(); fDesc[0] = "TimeTable is a tool for anyone who needs a visual timetable. It provides an easy way of scheduling the events for each of the maximum 20 timebars. With use of dragging, cut, copy & paste and multiple selections you can easily schedule your events. By working on the timetable in a visual way you can easily see overlapping events. Of course you can load/save your tables, put comments in it and print a report. TimeTable is provided with context sensitive help, which means if you click the question mark in the top right corner of each window, you get help concerning the clicked object."; 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 = ''; } }