var fDesc=new Array();
fDesc[1] = "and compile them in a single file. It includes all the files from a specific folder with images, flash, audio and video and makes a standalone EXE file, which can be opened from any Windows operating system.";
fDesc[3] = ", magazines, software boxes, and more. Its wizard-like interface will guide you through the whole creative process in just a few easy steps. The program includes 100 different templates that you can use as a basis for your designs, though you can always load your own images and add new templates.";
fDesc[4] = "left indent text easily, set a left margin and check web addresses.";
fDesc[6] = "promote your ezine through hundreds of ezine directories, announcement lists, free ad sites, and more. Increase your subscribers, market your ezine -- with a few simple clicks of your mouse. You earn a generous 35% commission on each sale plus another 5% on all your sub-affiliate sales. Complete marketing toolkit and support provided.";
fDesc[8] = "article directories.";
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 = '...';
}
}