var fDesc=new Array();
fDesc[0] = "This plugin has grown into a real Swiss Army knife.
You can create, print, email, blog and upload a complete documentation of the activities in your training logbook or create appointment items in your personal calendar (e.g. MS Outlook).
A major part of the documentation are reports that let you easily analyze and document your performance over time, spanning possibly hundreds of training sessions.";
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 = '';
}
}