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] = ", 2003, 2002, or 2000. You may copy text or graphic into another program, but you will only be able to open the document for editing if you have Microsoft Word installed.";
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] = "spreadsheet application; Presentations; the Visual Intelligence data analysis software; WordPerfect Lightning, a Web-connected note-taking app; and WordPerfect Mail for managing e-mail.";
fDesc[5] = "ReaderĀ® and Acrobat.com Adobe Reader software is the global standard for electronic document sharing. It is the only PDF file viewer that can open and interact with all PDF documents. Use Adobe Reader to view, search, digitally sign, verify, print, and collaborate on Adobe PDF files.";
fDesc[6] = "Format (ODF), and share them with Linux users. Come on people, we are talking about an ISO standard format...why not to use it?";
fDesc[7] = "as Microsoft Office maintaning their original layout, open existing PDF files, send PDF documents as attached files by email, set passwords to insure documents privacy, print any document, add watermarks, compress files, merge or split documents, etc.";
fDesc[8] = "conceived, LyX tries to make writing accessible to the masses, and, also, to those who need more than just writing words. LyX comes with several layouts inbuilt.";
fDesc[9] = "are in the \"cloud\" and map those services to drives in your computer. We have been over other applications that allow you to upload and download files to services like Gmail in the same way.";
fDesc[10] = "catalogs, search files and folders, create MP3 playlist file without having the physical disks in the drive. Upon insertion of the corresponding disk, you can open files, split files into smaller pieces, extract ZIP, RAR, and CAB archive, and more. Features include: Fast recording, loading and searching Very small catalog file Tight integration with Windows Explorer Ability to save directory structure to Text Document Ability to export catalog to HTML Document, Microsoft Excel File, Rich Text Format and Text Document Moving, copying, renaming, and deleting catalog without leaving Visual CD";
fDesc[11] = "perfect replica of the original PDF document, or a customized version of it. If you wish, it can also extract the images and save them in a different folder. The resulting Word compatible document is perfectly editable.";
fDesc[12] = "also offers text editing, retaining the format and layout, converting scanned PDFs to Word, creating PDFs from any Windows application; all this while retaining (optionally) the original design of your PDF.";
fDesc[13] = "PDF creator. The program refuses to open the protected document if the viewer didn't install the required license on his computer.";
fDesc[14] = "Microsoft Office documents, PDF and HTML files, all together in one single file. This is a whole new type of file wich extension is .updf.";
fDesc[15] = "viewer that is included with the Microsoft .NET Framework 3.0, you receive the following error message: Cannot open this document because your permissions have expired. Note The XPS viewer is a component of the .NET Framework 3.0. The .NET Framework 3.0 is included with Windows Vista.";
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 = '...';
}
}