var fDesc=new Array();
fDesc[0] = "Visual Studio Professional 2017 is a complete development environment for Windows applications. Its interface is designed so that programming is made easier. The unique IntelliSense code auto-complete provides a list of variables, functions, and function declarations so that you can insert them without much typing.
Visual Studio Professional 2017 supports Visual Basic .Net, Visual C , C#, F#, and third-party languages like JavaScript and Python.";
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 = '';
}
}