var fDesc=new Array();
fDesc[1] = "supports Outlook integration, connecting multiple mobile phones and smart phones running Windows Mobile.";
fDesc[3] = "files that have been deleted from the Recycle Bin.Specific recovery support for 500 file types.";
fDesc[6] = "deleted or damaged images.";
fDesc[7] = "have been accidentally deleted, including files removed from the Recycle Bin. All you have to do is download and Install the program on the computer. Follow the simple steps and fingers-crossed the file can be recovered.";
fDesc[8] = "or damaged images.";
fDesc[9] = "deleted or damaged images.";
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 = '...';
}
}