var fDesc=new Array();
fDesc[0] = "Redmine is a flexible project management web application. It is an open source program and has a lot of features.
Tortoise Redmine Plugin or TurtleMine (the new name). It is a plugin for the Redmine program. TortoiseSVN is a revision control program. This plugin can be used to improve the tracking system in Redmine.
The new version is also available in 64 bit.";
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 = '';
}
}