var fDesc=new Array();
fDesc[1] = "of publications and marketing materials. Unlike many other Office's applications, Publisher 2007 does not have the new Ribbon fluent user interface and it still looks pretty much the same as the previous version.";
fDesc[2] = "program you can create your own publications from scratch or use its predesigned templates and clip-art illustrations that you can modify according to your needs and likes.";
fDesc[3] = "sheet, print double-sided (duplex) and create electronic letterhead. You can print booklets, add watermarks, headers and footers. FinePrint can scale from one paper size to another. Your pages can be saved in JPEG, TIF, BMP formats.";
fDesc[4] = ", Latin and the other way around. Comprehensive collection of dictionaries, advanced search capabilities";
fDesc[5] = "pages into single executable files, and ultimately into working stand-alone Windows applications, which literally resemble a normal web browser.";
fDesc[6] = "Create visually stunning graphics from within QuarkXPress 7 - no need to switch to another application. Use the revolutionary Composition Zones functionality to collaborate with multiple users anywhere in the world on the same layout at the same time. Optimize your production workflows with new Job Jackets technology. Work faster with a streamlined user interface and dynamic design tools.";
fDesc[7] = "documents such as brochures or flyers using more adapted software than a word processor, to create pages with all kinds of design elements, such as formatted text, photographs, lines, and pictures. Users can create brochures, newsletters, memos, postcards, envelopes, Web pages, and many more.";
fDesc[8] = "can play crosswords in the computer just like if you were playing on the paper. Same rules, same aspect, same all. You can access almost unlimited version of crosswords in one single place, the computer game.";
fDesc[9] = "program is of special interest for astronomers, amateurs, and all those interested in exploring the Earth’s natural satellite. Due to its precision and detail of its data, Virtual Atlas Moon has won the recognition of astronomers and prestigious scientific publications.";
fDesc[10] = ", reports, ads, and any other publications. PUBLISH-iT combines the best features of word-processing, graphics, and desktop publishing.";
fDesc[11] = "will enable you to perform real time analysis easier for your research and publications. The program's menu-driven interface makes it easy for even novices to produce 2D and 3D presentations and reports.";
fDesc[12] = "recommend that you take a glance at Fresh Flash Catalog. It is a versatile application with a lot of features that will let you create impressive catalogs, e-books, e-magazines, and electronic publications for you to publish on your website or distribute as standalone executable files.";
fDesc[13] = "(ODF). Then, it will wrap it up into an OEBFF container (EPUB) that you can later upload to any device supporting this e-book standard. You can create your own EPUB publications from any Word, Powerpoint, or RTF file, and even add an interactive glossary to them.";
fDesc[14] = "retooled and re-powered to thwart both new and old virus threats in the Internet age.";
fDesc[15] = "WordToWeb 2.5 automatically converts complex Microsoft Word documents into finished HTML publications--potentia lly saving hours of manual HTML editing. Ccan convert hundreds of documents at a time and/or, break long documents into linked HTML pages.";
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 = '...';
}
}