var fDesc=new Array();
fDesc[0] = "Immidio Flex Profiles improves IT services quality and end-user productivity with three instant-on solutions helping to quickly solve the most common profile management challenges:
- Remove the legacy from previous application implementations and de-installations with the Profile Cleanup feature
- Reduce the size of end-user profiles instantly with Windows Common Settings and Application Templates
- Prepare applications to be managed through Immidio Flex Profiles with a configuration wizard, providing the intuitive guide to get started
- Instantly improve logon and logoff times drastically by enabling the DirectFlex feature";
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 = '';
}
}