var fDesc=new Array();
fDesc[0] = "OxyProject Metrics is an application that provides quantitative information for software projects that empowers software professionals to assess the complexity and maturity of a software product.
OxyProject Metrics gathers source code metrics from a .NET solution, a C#, VB.NET, and C project or folder.
Reports in CSV and plain text formats are available for the source code metrics";
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 = '';
}
}