var fDesc=new Array();
fDesc[1] = "other applications of this kind. With this tool you can write images on a disc, mount on a virtual drive, create an image from a disc or convert it to different formats, create bootable CDs/DVDs, etc.";
fDesc[2] = "files. It can be easily downloaded from Microsoft Update site or using the automatic updates in Windows. For the installation Windows Installer 3.1 is needed.";
fDesc[3] = "Alt-Tab keystrokes have in Windows, with some additional features. You can customize the appearence of the program for each user, with different colors and fonts.";
fDesc[4] = "customizable computer within your desktop! Without the need of formatting, or getting an additional computer, with this application you can test drive an operating system, software, or a configuration and see if it fits your needs!";
fDesc[5] = "password to prevent unauthorized access. The user interface is as easy as 123. Just create a new locker, set your password and drag any file or folder to encrypt. Multiple users can use the program by creating multiple lockers on the same computer.";
fDesc[6] = "health status, errors and temperature of your hard disks. It also works with other storage devices such as memory cards, USB sticks, iPods, etc.";
fDesc[7] = "programs on Microsoft Windows XP or Server 2003 without the need for changing the system wide locale by emulation of the code-page needed by these programs.";
fDesc[8] = "a realistic looking environment with different scenarios. AssaultCube works on 64-bit MS Windows (Windows 2003 Server/XP/Vista), All 32-bit MS Windows (95/98/NT/2000/XP/Vist a/2003 Server) and All POSIX (Linux/BSD/UNIX-like OS’s.";
fDesc[9] = "themselves to run at Windows startup. This program comes in two versions: one for 32 bits operating systems and one for 64 bits operating systems. The System Requirements for both versions are a Pentium-class processor or better.";
fDesc[10] = "Downloader 3.1 and feel satisfied. This application can help you download video files from the most popular websites, including Break.com, YouTube.com, DailyMotion.com, Myspace.com, Google Video and many other.";
fDesc[11] = "functions, including hyperbolic, logarithmic, trigonometric and natufal functions. There are not a lot of system requirements needed in order to get this program installed.";
fDesc[12] = "have experienced a system meltdown that leaves you with a frozen screen and nothing you can do about it. This application could be a solution. AntiFreeze is a last resort for making your system responsive again.";
fDesc[13] = ", communicates and executes information. MindMapper 2008 6.0 Standard Edition helps to order the ideas not only of business projects even personal projects.";
fDesc[14] = "and manage the system. The program has many tools that can optimize, tune and tweak a Windows based computer. The user interface makes using all the features even easier.";
fDesc[15] = "program also includes some extras and a reloader, which you can use after visiting Windows Update. As of July 14th, 2008, the project has been discontinued, as you can read in its page.";
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 = '...';
}
}