var fDesc=new Array();
fDesc[0] = "Entrian Source Search is a Visual Studio Add-in that works like a search engine for your source code. No matter how big or small your projects, it's the fastest way to search and navigate your code.
Search everything – not just code, but comments, strings, resources, documentation, notes, ChangeLogs, everything. Source Search goes way beyond a refactoring tool, or Find All References, finding important information in places other than just the source files in your solution.";
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 = '';
}
}