var fDesc=new Array();
fDesc[0] = "Qt5 Visual Studio Add-in is an open-source program that supports Visual Studio 2012, 2010 and 2008 for developing Qt 5 applications. The application includes project creation wizards and project settings form specifically designed for the Qt 5 module structure.";
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 = '';
}
}