var fDesc=new Array();
fDesc[0] = "Office Timeline was created for over-worked professionals who need to deliver stunning executive presentations and project reviews quickly.
It is built right into Microsoft PowerPoint so it is familiar and easy to create, highly-
customizable, and uniquely distinctive project timelines and Gantt charts that will impress customers, colleagues, and managers.
Over 400,000 professionals in businesses around the globe are using this award winning PowerPoint add-in to make project professionalism quicker and easier than ever before.";
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 = '';
}
}