var fDesc=new Array();
fDesc[1] = "Component of Acer Empowering Technology • eData Security Management • eLock Management • eNet Management • ePower Management • ePresentation Management • eRecovery Management • eSetting Management";
fDesc[2] = "devices and their controllers. Once finished, it indicates which drivers count with a new version. it automatically connects to the Internet looking for the upgrades for each of those drivers";
fDesc[3] = "user interfaces. Working with this software is much easier than with any other similar application. You can automate the work using different keystrokes, mouse movements, and with various control operations.";
fDesc[4] = ", through to the coded solution. User should beware that this tool is more complex than a simple UML diagram editing tool, in that, through the use of the Model Drive Architecture (MDA) standard, the tool supports complex modeling which is realizable in code.";
fDesc[5] = "a system tray into special menu,change the order of icons in the system tray (sort tray icons),restore icons in system tray at crash Explorer.";
fDesc[6] = "Connection Keeper can also be set up to automatically close those annoying pop-up windows.";
fDesc[7] = "projects around the world. Boinc software uses the time when your are not using PC at all, and then it processes scientific information from the project you already chose. With this, you help to scientific investigations in areas like, physics, chemistry, biology, etc.";
fDesc[8] = "transition effects. gPhotoShow is ideal for displaying your favorite image files from your collection or even use it to create a corporate logo Screen Saver for your Company. Features : - Several transition effects - Image formats : BMP, JPG, GIF, PNG - Works on both 256 color and True Color displays - Configurable delay between images - Automatically resizes your images - Plays your favorite music during slide show - - Sound formats: MID, WAV, MP3 - Multi monitor support in Windows 98 and Windows 2000 - Password protection - Easy install / uninstall";
fDesc[9] = "screens. With this software you can configure it to have a different effect if the windows is active or inactive, and the selection of the screen color and it disposition of the window, specifying if you want to exclude some applications of this effect.";
fDesc[11] = "users some easy to use advanced options for capturing the color value from any position of the Screen even if the selected program is inactive.";
fDesc[12] = "transparency level of any window, either manually via title button or automatically depending on a window state (active/inactive/moved /etc.).";
fDesc[13] = "users, disabled users, locked out users, inactive computers and disabled computers.";
fDesc[14] = "specified domains, reports to you, and automatically disables all accounts inactive for more than a specified number of days.";
fDesc[15] = "user inactivity. When the period of inactivity exceeds a specified limit, a warning message appears, and the application shuts down.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}