var fDesc=new Array();
fDesc[0] = "daylight is the standard business solution for the management and marketing of courses, events, trainings and other activities. daylight provides all the necessary functionalities, is user-friendly, easily adaptable and due to its open standards, can be readily integrated into existing system environments - from single-PC to client-server installations with hundreds of clients.
daylight is a multi-tenant and multilingual client/server solution for the Microsoft Windows platform. Nevertheless, this ideal software solution for course and event management can also be installed without restriction as a single user solution. Thanks to its complete functionality, daylight supports all the important workflows before, during and after the performance of your courses, seminars and events.";
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 = '';
}
}