var fDesc=new Array();
fDesc[0] = "gbCodeLib is a full-featured, multi-language source code librarian. It has a powerful, built-in source code editor and revision control manager.
gbCodeLib has an easy-to-use interface yet provides one of the largest feature sets of any code librarian available today. Over 1000 sample source code snippets, including language mini-tutorials, are included in the distribution. gbCodeLib and its snippets can be updated online.";
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 = '';
}
}