var fDesc=new Array();
fDesc[0] = "Visual Basic Upgrade Companion (VBUC) generates C# or VB.NET source code from Visual Basic 6.0 code. It reduces the amount of manual coding and generates a native .NET application that is visually and functionally equivalent to the original VB6 system.
VBUC understands coding patterns and converts them into equivalent patterns in C# or VB.NET. Forms are converted to Winforms designer files, so that you can use all the widgets in the Visual Studio Toolbox to edit and customize them.";
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 = '';
}
}