var fDesc=new Array();
fDesc[0] = "The Multi-Language Add-In for Visual Basic provides a general solution for creating and maintaining Visual-Basic projects with support for multiple languages.
Features:
-Add localization support late in development;
-Controls database to specify localizable properties;
-Detect strings in your source code;
-Select texts for localization;
-Hide lines which do not require translation;
-Filter using regular expressions.";
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 = '';
}
}