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] = "Microsoft Word, Excel, PowerPoint, Outlook, Internet Explorer, Project, Visio, Access, and Publisher, as well as Autodesk® AutoCAD® and Lotus Notes.Scan paper documents to PDF and automatically recognize text with optical character recognition (OCR) technology to create compact, searchable PDF documents.Archive e-mail or e-mail folders from Microsoft Outlook or Lotus Notes in PDF to facilitate search and retrieval. Convert complete web pages, or just the portions you want, including or excluding rich and interactive media. PDF versions of web pages are easy to print, archive, mark up, and share.Convert virtually any 2D and 3D designs — including layers, dimensions, and metadata — to a single PDF file to share product data more easily and securely.";
fDesc[4] = "secure distribution and collaboration. With Acrobat Standard you can: * Combine and arrange documents * Manage shared reviews * Use familiar review and commenting tools * Save in Microsoft Word * Capture web pages * Sign documents digitally * Etc.";
fDesc[5] = "and with just simple right click you are able to access all its features. All the basic effects of the application are based on the plugins for its complete customization and addition of new effects.";
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 = '...';
}
}