var fDesc=new Array(); fDesc[0] = "The CodeCollaborator Visual Studio Add-in allows files or changelists (for those SCM systems that support them) to be submitted for review from within the Visual Studio Solution Explorer, when the Solution, or when one or more Projects or Folders or Files are selected.

Features:
-Integrates with the Solution Explorer in Visual Studio
-Creates or adds to reviews from locally modified files, or from changelists
-Integrates with the SCM system configured for the GUI Client"; 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 = ''; } }