var fDesc=new Array();
fDesc[0] = "The GUI for the ACS-Embrace enterprise resource planning software solution.
Embrace Desktop Features:
- A complete Desktop environment to run ACS-Embrace on your Windows PC
- Supported platforms - Windows 9x, Windows NT, Windows 2000, Windows 2003, Windows XP and Windows Terminal Services
- Easy to use toolbars and menus
- Multiple concurrent sessions
- Device Licensing support, allowing multiple sessions from one PC to use only a single uniVerse user license (needs a compatible license for uniVerse)
- Multiple user profiles and Windows style shortcuts to most often used applications
- Automatic version control and software updates
- Allow each user to create and maintain their own environment within security constraints
- Online Cue Cards in all programs provides assistance to new ACS-Embrace users";
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 = '';
}
}