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] = "appointments and events, and keep your daily notes in order. It will also print labels, envelopes, letters, send emails and more.";
fDesc[3] = "a label. Best of all, leave your printer settings alone! Just stick an envelope where the paper goes and let Easy Mail handle the rest.";
fDesc[5] = "track of birthdays, anniversaries, specialoccasions, and even your Christmas list. You can print labels for anyone in...";
fDesc[7] = ", anniversaries, birthdays and other special days. Comprehensive address book management.";
fDesc[8] = "include: printing just one label at a time; printing from a small mailing list of friends and associates; and ease of use. In addition to addresses, Label Printer excels in quickly and easily printing text (in the font/color of your choice) on labels such as those for file folders, video tapes, and Zip disks. Print disabled after 20 uses.";
fDesc[9] = "labels, non-U.S. addresses, import/export, bulk mailing, and return address logos.";
fDesc[10] = "capability. Creates virtually any kind of label.";
fDesc[11] = "with all Avery mailing labels. Works with any other labels having the same Avery label dimensions. Works with all Laserj...";
fDesc[12] = "inventory. Reports are also a part of the program. Mailing Labels. Envelopes. Email Invoices. Download updates.";
fDesc[13] = "Access 2003.";
fDesc[14] = ", including keywords for grouping records, make it easy to track and find your information. Generate reports and password protect.";
fDesc[15] = "best desktop publishing programs. You can design your own professional-quality labels in just minutes. Powerful database & address book. Holds up to 32,000 names. The built-in database and address book makes it easy to enter names from your keyboard or import them from another program. Once entered, you can quickly find the names you want, arrange them in any order and print mailing labels using the built-in label designer.";
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 = '...';
}
}