var fDesc=new Array();
fDesc[1] = "virtual CD/DVD which can be used to mount the Image of any disk. So, for the games that require you to put the CD into drive, this program is very useful. Copying Protected or Copy Righted CDs are illegal. But if you own the CD and want to make a backup copy of it, no problem.";
fDesc[2] = "card, removable drives, floppy disks, etc. These files (or folders) stay in the system once they are deleted because of accidental actions, formatting, Windows reinstallation, hard disk failure, empty the Recycle Bin, partition errors, by mistake, etc.";
fDesc[3] = "formated or corrupted from almost any memory card. With this powerful utility you will be able to recover images, videos, data and any other media stored in any of the supported memory cards.";
fDesc[4] = "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[5] = "them more suitable for email, or for any other use. This program can process photos in a batch mode. You can force your images to a specified width and height, and still keep their proportions.";
fDesc[6] = ", memory card, or digital camera to find lost files. Recover your accidentally deleted files, your formatted hard disk drive ...";
fDesc[7] = "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[8] = "exponentially, more and more of us are forgoing traditional film cameras for the new generation of digital cameras.";
fDesc[10] = "of lost files from servers, desktops, laptops, iPods etc. This incredible application enables you to retrieve any lost file under any circumstance, such as deletion, system crash, missing drive letters, hidden/lost partitions, virus attack, etc.";
fDesc[11] = "application allows recovering images from different digital data storing devices, like hard drives, CDs, flash memory cards and many more. The program supports all the most wide-spread formats of multimedia files.";
fDesc[12] = "Photo Recovery will recover lost, deleted and formatted digital photos, audio and video files from all media types.";
fDesc[13] = ", damaged, lost, missing images and folders with photos, snapshots, pictures and videos. The program was developed for use with photo media, but also it can be used on fixed drives. So you can restore your media from all hard disk drives and removable media drives.";
fDesc[14] = "It is a perfect solution for home and business use, amateurs and professional photographers.";
fDesc[16] = "you through the process. You can detect and recover all your deleted image files by following three simple steps: exploring the drive, selecting the files you want to restore, and saving the recovered files.";
fDesc[17] = "recover your images from media that has been formatted*. (*Some camera models excluded)";
fDesc[18] = "photos, music and video files from basic format to high-end raw image formats.";
fDesc[19] = "Recall DRS is a great solution, which enables the user to recover all the lost data. Irrespective of the fact whether the data was lost by unintentional deletion, or corrupted due to hard drive problems.";
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 = '...';
}
}