var fDesc=new Array();
fDesc[0] = "An all in one settings solution for a multitude of configuration options in Windows, Office, Powershell and popular internet browsers. This release now has 13 different configuration tabs including Windows 10 and a total of 287 configuration items spanning across all versions of Windows, Powershell, Outlook, Server Administration, Google Chome, Firefox and Internet Explorer.";
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 = '';
}
}