var fDesc=new Array();
fDesc[1] = "delivery formats to suit the new media, such as interactive PDF format or Adobe Flash. Indesign allows publishers to create and submit compositions for printing.";
fDesc[2] = "also from Adobe (formerly Macromedia). It is compatible with Windows XP with Service Pack 2; Windows Vista all flavors (32 bits editions) and requires1GB of RAM, 1,024x768 display with 16-bit video card.";
fDesc[3] = "InCopy® CS3 software is a professional writing and editing program that tightly integrates with Adobe InDesign® software to enable collaborative editorial workflows. InCopy helps writers and editors achieve new levels of efficiency.";
fDesc[4] = ", StarOfice, OpenOffice.org, Visio, XMP Adobe document, Windows 2K or PDFfiles. Export into HTML, XML, CSV, Word";
fDesc[6] = "control system, track file status with comments, use Adobe Bridge to find files visually, search for XMP metadata, and host Adobe PDF reviews.";
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 = '...';
}
}