var fDesc=new Array();
fDesc[0] = "TimeDesign can only be described as the simplest and easiest way to create timetables for schools and training institutions.
Main features:
- A once off purchase – no more yearly license fees. Maintenance Releases are also free, but a small fee may be charged for Version Upgrades
- An unlimited number of periods per day.
- An unlimited number of days within a cycle.
- An unlimited number of educators, classes, rooms and subjects within a group.
- Multiple educators can teach the same subject.
- Part-time educators - you can specify what periods are available for teaching.
- The program learns from your data and adapts its solving method accordingly.
- The ability to load the tables into Excel or Word for personalisation and printing.
- The ability to create HTML files for direct access from a Web Server.";
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 = '';
}
}