var fDesc=new Array();
fDesc[1] = "interfaces to ensure that data remains safe when the computer is unattended or for public use, such as those in an open environment. It also prevents data from being copied to external storage media, such as an optical disk, flash drive or floppy disk.";
fDesc[2] = "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[3] = "PC. The data appears classified in three big groups, Software, Hardware and Network. Within each of them there are several sections that specify details about the processor, motherboard, printer, operating system, video drivers, libraries, etc.";
fDesc[4] = "application combines many functions for the processing of a digital image. Create slideshows, screensavers, postcards, videos from images, landscapes and more. It captures images and video from many devices and formats. Convert file formats.";
fDesc[5] = ", removable drives (ZIP/JAZZ), flash devices, and RAID arrays. The program measures the physical performance of the devices.";
fDesc[6] = "information from CompactFlash cards (type I/II), IBM Microdrives, SmartMedia cards, MultiMedia cards (MMCs), Secure Digital (SD) cards, Memory Sticks, and any other storage devices.";
fDesc[7] = "files deleted from hard disks, USB flash drives, CF and SD cards and other storage devices. There are advanced options like delete file search, files wiper and emergency dick image.";
fDesc[8] = "devices from your PC and increase your online security;and clean Firefox now!";
fDesc[9] = "any storage device. The program features a very simple and intuitive user interface, specially designed for beginners with a step-by-step wizard that guides you throughout the different steps of the process.";
fDesc[10] = "drives and devices, lost due to accidental deletion, system crashes, drive formatting and other reasons. The program features a very simple and intuitive wizard-like user interface, very suitable for beginners.";
fDesc[11] = "with Media Catalog Studio, a handy software application for classifying and tracking media files. This database is capable of identifying media files on any storage devices - hard-drives, floppies, external drives, CDs and so on. The program supports MP3, WMA, MP4, MPC, APE, OGG, AAC, FLAC, WAV, AVI, MPEG, WMV and Audio CD files and comes with a lot of great perks - duplicates finder, batch tag editor for MP3/WMA/OGG/AAC/APE/MP+/M4a files, to name a few. The best thing about this database is that it allows users to enter all essential information about music file - track number, name of the music piece, name of the author, album, year of release, commentary, composer, mood, genre, rating and so on. Conveniently, all files stored in this database can be sorted out by artist, album, year, bitrate, frequency, genre, category, rating or any field/category. The search in the database can be...";
fDesc[12] = "devices such as hard drives and CD- ROMs. This driver takes advantage of the latest Intel Ultra ATA controller features on the Intel ...";
fDesc[13] = "used.";
fDesc[14] = "the computer effectively and perform many complex tasks. With the help of this application, the user can navigate by accessing the partition table directly, or through FAT or root directory, boot record or even jumping to a certain sector.";
fDesc[15] = "photos very easily. It can work with multiple digital cameras, USB/Flash Drives, memory card and many other storage devices.";
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 = '...';
}
}