var fDesc=new Array();
fDesc[1] = "new, intuitive interface aimed to streamline your work flow. Also, many of the features that were dispersed in several menus, now are under the Office button.";
fDesc[2] = "restrictions about how many clients can connect to a server. It is free of charge for non-commercial purposes. The Server browser allows you to search for public servers. Little suggestion to make: private text message get lost in the other diagnostic messages.";
fDesc[3] = "lost parts of the powerful crystal. Playing this game is very easy and fun, move with the arrow keys and tab to swim up and reach caves under the surface of the water. Be careful with your enemies and don't let them touch you, some can kill you.";
fDesc[4] = "comes to securing backups of hard drives. The program includes Mozy technology which allows the user to back up all important data offsite. This is very effective against theft and should something happen to any data and it is lost, then it will quickly and easily be restored.";
fDesc[5] = "information that has been accidentally deleted or formatted. Now with this incredible application you can recover your lost data even if your system is not bootable.";
fDesc[6] = "retrieves files lost due to accidental removal or deletion from the Windows Recycle Bin. It enables you to either make a complete scan of the selected volume, perform a simple or advance search by selecting file masks, and also recover marked files.";
fDesc[7] = "hardware or software RAID's.The software supports NTFS, FAT32, FAT16, NTFS5, NTFS+EFS file systems and works under all Windows operating systems.";
fDesc[8] = ", memory card, or digital camera to find lost files. Recover your accidentally deleted files, your formatted hard disk drive ...";
fDesc[9] = "memory card(s). Its intuitive interface allows you to follow through the process easily. The trial version is limited to recover up to 4 folders on each run.";
fDesc[10] = "Microsoft Office Documents (MS Word, Excel, Access). It can perform brute force and dictionary attacks, and apply masks to ease the recovery process.";
fDesc[11] = "cameras, USB drives,ZIP disks, etc. that have been lost due to accidental deletion or format, system crash, virus damage, power failure and much more.";
fDesc[12] = "missing husband! A thrilling journey from marketplaces to museums where mystery and intrigue wait around every corner, Jewel Quest Solitaire II is an exciting combination of solitaire and puzzle fun! Embark on this brain-bending adventure today!";
fDesc[13] = "lost media files from various digital devices whether it is video, audio or images. Presently it is fully capable to recover your media files from Audio recorders, digital cameras, MP3 players, WMA players, PDA, Mobile phones, hard disk, compact flash card of type I and II etc.";
fDesc[14] = "common business documents including those of Microsoft Office. Usually recovering a password takes a long time but this tool has the capacity to use the power of more than one computer to recover.";
fDesc[15] = "a passage that an archaeologist found under a tomb, with different doors and rooms. You must help to find the way to enter the different rooms and collect the treasures.";
fDesc[16] = "intentionally deleted or lost photos. Simple and clear step-by-step interface allows you to instantly recover lost or deleted images from your: digital camera, computer, flash card, memory card, mobile phone or any other media or drive.";
fDesc[17] = "from your hard drive, USB drives, ZIP, flash drives, SD Cards, MMC, and Firewire drives. It supports both FAT and NTFS file systems. It recovers files deleted after pressing Shift+Delete on the keyboard; erased from the recycle bin; files lost from the DOS command prompt; among others.";
fDesc[18] = "role-play characters through eleven scientific categories in order to help their race to dominate the vast, virtual galaxy presented in the game.";
fDesc[19] = "and find hidden treasure before his rival does or he and his friends could be doomed. The game features over 40 levels of play, set in lush forests environments, glacial mountains and dark caves with cave dwelling creatures.";
fDesc[20] = "make the cut when Half Life 2 was released. After a year, the developers came up with new technologies that they wanted to try before releasing Episode 2 of HL2. Thus, they released this game as a download for owners of the Windows game.";
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 = '...';
}
}