var fDesc=new Array();
fDesc[1] = ", AutoCAD and plain-text into PDF. Supports PDF merging and digital signing from the Windows Certificate store.";
fDesc[3] = "alone tool can create PDF files on its own. You can include images already saved on your disk, or acquire them from your scanner or webcam. Or you can extract images from other PDF files. You can import text from any source.";
fDesc[4] = "to make annotations on image files: you can insert lines, arrows, rectangles, text pieces, callout boxes, and insert vertical crop marks. You can zoom in and zoom out. For PDF conversion you need Acrobat Distiller.";
fDesc[5] = "to this \"printer\" will be converted to images, saved, emailed, uploaded to server, or redirected to a printer. Free SDK.";
fDesc[6] = "any application that can print. Centralize PDF creation with Windows Terminal Services or Citrix MetaFrame Presentation Server.";
fDesc[8] = "save to a file, copy to Clipboard, upload to a server or email. Use it for importing text from unsupported document formats";
fDesc[9] = "Office (Word, Excel, PowerPoint), AutoCAD and plain-text into PDF. Supports PDF merging and digital signing from the Windows Certificate store.";
fDesc[10] = "required.";
fDesc[12] = "Acrobat Reader 5 and 6. Support plain text, HTML-like syntax for formatted text and image files (TIF, JPG, PNG, GIF, BMP, EMF).";
fDesc[13] = "or web presentation, then save to file or upload to a server. You can customize it with interactive wizard and embed into your application";
fDesc[14] = "supports unlimited watch folders and POP3 e-mail accounts. It runs in the background as a Windows Service for fully automated conversion.";
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 = '...';
}
}