var fDesc=new Array();
fDesc[1] = "native file support for Adobe Flash and Adobe Photoshop Album slide shows, and electronic cards, and eBooks Adobe Reader is free, works with Windows 98/Me/2000/XP/2003/Vis ta.";
fDesc[2] = "PDF format to as the standard for giving downloadable information pages or printable forms. This software helps you do all the operations on a PDF file, like inseting password, converting images to text, compressing and reducing file sizes, etc.";
fDesc[3] = "to convert paper documents and image files into fully editable text documents. In the 9.0 version, overall accuracy has been increased especially on documents containing tables, legal documents, multilingual documents, and digital camera captured images.";
fDesc[4] = "to its superior page layout algorithms, converted documents look exactly like the original with columns, tables, bullets and graphics.";
fDesc[5] = "documents, PDF, and digital camera images. Superior recognition accuracy and layout retention.";
fDesc[6] = "they can be shown and distributed on any computer with any Operating System as a digital document. Any file that can be printed out of any MS Windows application can be converted to a PDF document by means of this free program.";
fDesc[7] = "awarded application allows you to completely remove selected information on your hard drive and other memories.";
fDesc[10] = ", organize, and keep track of virtually any type of information about your electronic documents.";
fDesc[11] = "mail attachements. You can also permanently remove (shred) files, folders and other information.";
fDesc[12] = "user. Encrypt sensitive documents and other private digital information you have on your computer.";
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 = '...';
}
}