var fDesc=new Array();
fDesc[0] = "The App-V 5 Configuration Editor (ACE) is part of the Virtual Engine Toolkit that provides an easy way to modify App-V 5 Dynamic Configuration and Manifest files.
The dynamic configuration and manifest files for App-V 5 provide a powerful mechanism to modify the settings associated with an App-V package when it’s deployed to a client or launched by a user. Unfortunately, it involves some manual manipulation and a detailed understanding of the XML schema/file structure. The simple GUI interface now allows App-V engineers to modify these files quickly and easily and cut out those pesky syntax errors!";
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 = '';
}
}