var fDesc=new Array();
fDesc[1] = "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[2] = "complete features one-click integration with Microsoft Office products. PDF complete works with Office 2007, 2003, 2002, and 2000 and supports Windows XP, Windows Vista, Windows 2000, and Windows 2003.";
fDesc[3] = "format. Its easy-to-use interface allows you to create PDF files by simply selecting the \"print\" command from any application, creating documents which can be viewed on any computer with a PDF viewer.";
fDesc[4] = "modify existing PDF documents. The application has the ability to create in batch mode and combine multiple files and multiple file types in a single PDF document, as well as create PDF packages.";
fDesc[5] = "will be provided of multiple interesting and usefull functions to secure your PDF files: Encryption, Decryption, Sign, Co-Sign and Verify.";
fDesc[6] = "is enough! Just print your document to any of your printers and Aloaha will convert the print job to a PDF Document.";
fDesc[7] = ", select and extract text and images, import HTML and convert it to PDF, generate single signatures, administrate forms.";
fDesc[8] = "right-click add-in that integrates directly into Windows Explorer.";
fDesc[9] = "documents or signature fields. Signatures produced with the Aloaha PDF Signator can be verified using standard Adobe Reader and Acrobat.";
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 = '...';
}
}