var fDesc=new Array();
fDesc[0] = "ProjectLibre is the leading open source alternative to Microsoft Project. It has been downloaded over 3,000,000 times in over 200 countries and has won InfoWorld "Best of Open Source" award. ProjectLibre is compatible with Microsoft Project 2003, 2007 and 2010 files. You can simply open them on Linux, Mac OS or Windows. ProjectLibre key features:
Compatibility with Microsoft Project
Gantt Chart
Network Diagram
WBS/RBS charts
Earned Value Costing
Resource Histograms";
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 = '';
}
}