var fDesc=new Array();
fDesc[1] = "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[2] = ", TOC, mail merge. Full support for professional printing. Many awards (see http://www.serif.com/c ompany/awards.asp). FREE. Registration required.";
fDesc[3] = "the use of your scanner. The results will be saved in common formats, so you can use them with such widely used applications like Word, Excel, etc.";
fDesc[4] = "existing FrameMaker users who want to author and publish technical documentation in multiple languages. Adobe FrameMaker 8 software combines word processing and XML-based structured authoring with template-based publishing.";
fDesc[5] = "an enormous flexibility. It helps linguistic professionals to keep and enhance consistency all along their work. This translation memory also allows handling formats such as HTML/ASP/JSP, SGML/XML and XSL through a TagEditor.";
fDesc[11] = ", more 15 encodings, fonts, colors, styles, bullets etc. HTML file has minimal size and completely compatible with W3C.";
fDesc[15] = "has an advanced system-wide hot-key which minimizes the Pocket Watch window to the system tray.";
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 = '...';
}
}