var fDesc=new Array();
fDesc[0] = "TRICHORD is a simple Agile project management tool that helps developers and managers track project status at a glance from three viewpoints (Time, Task, Team), using "Kanban Board" (a Just-In-Time pull control method in Toyota Production System).
Features:
-Kanban Board visualizes the project's task status intuitively, like cards on a wall.
-Burndown Chart visualizes the amount of remaining tasks and the project's velocity.
-Niko-niko Calendar visualizes the team's mood and serves as a simple twitter-like SNS communication center for the project.";
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 = '';
}
}