var fDesc=new Array();
fDesc[1] = ", leaflets, certificates, holidays and invitation postcards, and more. This software has a very easy and interactive interface. Now you don’t need to spend much time on this work, it will take just several minutes to prepare all the material you need.";
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] = "simple expression of thoughts. Print Perfect Deluxe has more than 210,000+ high quality images. The software allows customization by providing 3000 projects for editing to suit the needs of expression.";
fDesc[4] = "coordinates. It can be lauched from the Windows Explorer's context menu.";
fDesc[5] = ", technical diagrams, logos, pamphlets and more ! Print or export your work to file in JPG, PNG, GIF or WMF format.";
fDesc[6] = "trip-related activities (frequent flyer miles, expenses & more) at the desktop as well as on the go.";
fDesc[9] = "print labels or address an envelope. I should be able to enter a few keyboard characters to retrieve an address or multiple addresses. I should then be able to drag and drop the address to ANY address label or envelope, click 'Print' and be done. And I should be able to print multiple addresses just as easily.";
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 = '...';
}
}