var fDesc=new Array();
fDesc[1] = "includes a new interface, new tools, more document viewing options, online meeting capabilities, support for more secure workflows, and a host of other new features to help you save time and money.";
fDesc[2] = "program we can find one toolbar, one left toolbar, one panel and one window. We can open add effect or no-effect with them we can see our photos and transform, the colors are amazing and we can enjoy creating pictures like real artists.";
fDesc[3] = "in various formats like circular, standard, slimline and booklet. It comes with four default plug-ins; MP3 Renamer, File Numberer, Brightness and Contrast editor, and Image Rotate.";
fDesc[4] = "resize the images for you. Makes it easy to create great looking covers for any cases.";
fDesc[5] = "Bar, eight toolbars, one panel and one window. In the Menu Bar in the File button we can select between New, Open, Save, Save As, Close, Export, print and in this we have the wizard button, that help in all the process for create a new cover.";
fDesc[6] = "included layouts, of which there are more than 170. The program lets you create your own designs for any purpose. You can also create your own unique letterheads, forms or backgrounds for your planners or booklets.";
fDesc[8] = "TIFF, PDF to JPG, PDF to JPEG, DWG to TIFF,DWG to JPG,DWG to JPEG,DXF to TIFF,DXF to JPG,DXF to JPEG, PPT to TIFF,PPT to JPG,Word to PDF";
fDesc[9] = "what I used to do by hand when I was younger. It grabs a video movie and extracts every single frame of it. It then adds those frames to a template. You can then print those templates.";
fDesc[10] = "recordings the Beatles made during their entire career, and of those launched after their breakup. Also, you'll find the lyrics of the songs they recorded oficially. A must-have for all the Beatlemaniacs out there.";
fDesc[11] = "paper by printing up to 64 pages on both sides of a sheet. A series of booklets are combined to build a book. BookPrintXP operates as a printer driver that may be used by any application. Several print jobs may be accumulated for printing of booklets. E.g. you may print a booklet that contains several topics of a help file. This is done by executing the print function of the help system for each topic. In general BookPrintXP is suitable to print program manuals (readme.txt), help files, cook books, address books, program source listings, electronic publications etc. The program prints also poster. The program processes print jobs and image files as well.";
fDesc[12] = "have a section for keeping a record of entries or they come with a separate little register booklet, but they don't normally have very much space and you need to fill them in by hand.";
fDesc[13] = "reference without unrolling a large chart. Print as many copies as you like, if your chart get wet print another.";
fDesc[14] = "detail sheet, booklet and brochure.";
fDesc[15] = "front-cover for the booklet consisting of the CD name, artist and albums, and a back/spine cover so you can see the CD in your rack.";
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 = '...';
}
}