var fDesc=new Array();
fDesc[1] = ", Music, Animations, 2D/3D Vector Graphics, Documents, Databases, Spreadsheets, Archives, Presentations, Mailboxes, Address books, Windows CE and Palm files and many other formats!";
fDesc[3] = "Photo Recovery will recover lost, deleted and formatted digital photos, audio and video files from all media types.";
fDesc[4] = "now integrated into ZAR (version 7.8 and up).";
fDesc[5] = "exponentially, more and more of us are forgoing traditional film cameras for the new generation of digital cameras.";
fDesc[6] = ", 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[7] = "of digital camera storage media. The software includes utilities that rescue, repair, restore and recover lost pictures, digital images or videos from a camera. All kinds of file types are supported, such as jpg, tif, gif, 3gp, avi, mov or mpeg.";
fDesc[8] = "and photos from your USB supported removable media. This incredible application retrieves picture files from digital storage media even after the loss of root directory, MBR (Master Boot Record or Partition Table sector), DBR (DOS Boot Record or Boot sector), MFT or FAT.";
fDesc[10] = "in a few minutes. This program is extremely easy to use, you just have to press the START button and the program does the rest for you. It scans your entire device and shows the images available for recovery.";
fDesc[15] = "cards and hard drives.";
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 = '...';
}
}