var fDesc=new Array();
fDesc[0] = "Calendarscope is a calendar software for planning, managing, and scheduling appointments, meetings, birthdays, vacations, and other events. Network Edition allows you to share calendars with other users in the organization. It uses a client-server architecture.
Calendarscope Network Edition Client allows you to access your calendar located on the server, add/modify/delete events and tasks, view and print calendars, modify preferences, generate web calendars, etc.";
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 = '';
}
}