var fDesc=new Array();
fDesc[1] = "program is very complete but it is easy to use. You can be an expert on software but you will find this program very complete and useful. If you are a beginner, the program's interface will seem really easy and you will have no problems by using it.";
fDesc[2] = "users to add quickly and easily different style frames, from standard, colored, cool frames, to special shapes. It allows to resize, rotate and adjust brightness, contrast and hue, without affecting the selected frame, as well as color the photographs, and add text to the photos.";
fDesc[3] = "styles: simple, wood, golden, modern, professional and other. For each one of these, it includes 16 different frame models. Also, user can select frame thickness, inner border, background, etc.";
fDesc[4] = "of your photos, create collages and add effects to your images. You’ll be able to upload images in BMP, JPEG (JPG), GIF, PCX, PSD, PNG format, edit them and then save them on GIF, BMP, PNG, and JPEG format. Available in 8 languages.";
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 = '...';
}
}