var fDesc=new Array();
fDesc[1] = "Internet connection. With Stamps.comyou can send First-Class, Priority or Express Mail.You can even send packages and the softwareautoma...";
fDesc[2] = "make interesting postcards for any special events. In act you can start a new project by simply choosing a template or else you can place an image or video file of your own on top of it.";
fDesc[3] = "program, you must buy it if you want to run it. WinWay Resume Deluxe 12.0.25.0 begins with a resume wizard, that will guide you step by step to create a resume.";
fDesc[5] = ", Australian & UN stamps, complete with images, and indexed by the industry-standard SCOTT? numbering system.";
fDesc[6] = ", structured in the way YOU want! Features include: Full featured search mechanism, importing and exporting, printing, advanced sorting and much more...";
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 = '...';
}
}