var fDesc=new Array();
fDesc[1] = "new, intuitive interface aimed to streamline your work flow. Also, many of the features that were dispersed in several menus, now are under the Office button.";
fDesc[2] = "Free software to convert Adobe .PDF files to Microsoft .doc files. With this program, you will be able to extract text and images from PDF files.";
fDesc[3] = "with a fresh new look. Change the look and feel of your desktop icons with this amazing tool. This tool comprises a package of icons and is able to change or replace hundreds of icons on your Windows.";
fDesc[4] = ", columns, and graphics. All the features of a perfect PDF editor, PDF to Word and Excel converter makes this program nearly the best solution for your PDF-related problems.";
fDesc[5] = "textures, backgrounds and anything in your Word file. The best feature of Word to PDF Converter is that the resulting file is just the same as the original one; the program never makes any changes to text, formatting, colors or anything.";
fDesc[6] = "interface that will guide all users on how to convert their files from one into another. All you have to do to convert your files is to select them, choose the output folder, set some advanced options and then click on the begin conversion job button.";
fDesc[7] = "format in seconds. The application adds a toolbar to Microsoft Word, allowing you to control the program from there. You simply have to open a document and press the button reading \"Save as PDF\", and it instantly creates the PDF format of your document.";
fDesc[8] = ", this one has a twist. It allows you to completely convert a PDF file conserving its original formatting, which many other application just can't do.";
fDesc[9] = "Microsoft Word and RTF formats in just a few steps. This incredible program enables you to export the text, bitmap images and other contents from PDF document into a Word document, preserving the original page layout.";
fDesc[10] = "has been designed to solve malfunctions in your PC - those that may cause constant reboots, crashes, or slow down your system. The main menu of the program will offer three tabs: Scan, Diagnose and Repair.";
fDesc[11] = "convert your .doc files to Image files, such as Jpeg, Tiff, Jpg, Bmp, Ps, and Eps in a very easy way. DOC to Image Converter 2.0 will convert your Doc files in a fast way using a professional-quality level.";
fDesc[12] = "text, or among the changes occurred on the contents of two text files (text documents or even text directories), in a wide variety of formats (DOC, XLS, TXT, RTF, HTML, keeping its original formating), and show the differences.";
fDesc[13] = "This program is designed to prevent disclosure of confidential or inconvenient information. This application analyzes the Word files, then detects and removes hidden data from your documents. You can do it with a single file or process all files in a folder.";
fDesc[14] = "your source code into several files. Some formats you will be able to convert your DOC files to are HTML, PDF, PNG, JPG, SVG, Lotus, BMP, QUATTRO Pro and XLS. The program will not lose any kind of information when converting from one file into another.";
fDesc[15] = "depressing than having to deliver a project on a .DOC file and at the last minute realizing that the file is corrupted. Of course, you didn't back the file up when it was working, so you are kind of lost.";
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 = '...';
}
}