var fDesc=new Array();
fDesc[0] = "CompareEnter is a free add-in user for Visual Studio.
Using CompareEnter, you can compare files loaded in Visual Studio and the containing folders by using Compare .
You can easily call external comparison application to compare files opened in IDE and the containing folders.
Besides, you can also use other external comparison application such as Winmerge, etc.";
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 = '';
}
}