var fDesc=new Array();
fDesc[0] = "Wise Timetable Basic is an application designed for course scheduling.
Main Features:
- Manual and automatic course scheduling in multiple weeks.
- All necessary modules are already included in the license.
- You reach desired results fast, with simple data entry.
- Even most complex and largest timetables can be easily handled.
- Suitable for every educational institution - universities, colleges, primary and secondary schools, tuition schools, further education institutions etc.
- Web access and publishing is done with one click.
- Everything you do is always verified and friendly supported.";
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 = '';
}
}