var fDesc=new Array(); fDesc[0] = "This is a small tool to have a simple overview of the bugs assigned to anyone (or to a team) in the source control system and to show their status, severity, etc. It is like the bugger tool for Product Studio in MS. For anyone who want to have a gadget as simple as a dashboard for bugs, this is the product."; 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 = ''; } }