var fDesc=new Array();
fDesc[0] = "TimePanic FE for Windows is the freeware edition of TimePanic for Windows with a reduced feature set. It is for non-commercial use only. Here is a brief list of features only available in the commercial version of TimePanic.
Main features:
-Activities
-Find activities
-Split activity and insert a new one
-Projects
-Import projects
-Sub-projects
-Convert projects to sub-projects
-Current project
-Reports
-Activity filter
-Flag filter
-Report options
-Modification of report data
-Side Pane
-Customize side pane
-New divider line
-General
-Planned breaks
-Keyboard shortcuts
-Reminders
-Team support";
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 = '';
}
}