var fDesc=new Array();
fDesc[0] = "Whether you are writing a novel, managing a project, or researching a legal case, Aeon Timeline 2 has the tools to help you map the past and plan the future.
A timeline is composed of a series of events: an occurrence that happens at a particular time for a given duration. Depending on your project needs, these events may represent plot points in a novel, planned future tasks in a project, or known events in a legal case or historical research.";
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 = '';
}
}