var fDesc=new Array();
fDesc[1] = "HP device. It is now available for online downloading. It is primarily aimed at printing, it supports JPG, JPEG, BMP, PNG y GIF images. It allows us to import our photos from a memory card, printer, camera, PC, CD, scanner, etc.";
fDesc[2] = "creative projects. Take any picture you want and put it in a funny frame. You may also take a picture from your webcam; there is a quick access to this function in the program.";
fDesc[3] = ", and many more. The composition templates are divided into three categories, for 1 to 3 photos, from 4 to 8, and for more than 9 photos. We are allowed to resize and fully edit the images.";
fDesc[4] = "images together with different layouts, templates, photo frames, mask effects, cliparts and word arts. Created collages can be saved, printed, sent via E-mail or saved as wallpapers.";
fDesc[5] = "and sharing scrapbooks with family and friends directly via E-mail or slide-show. The exclusive design, fun and easy usage, fabulous backgrounds, and ready-to-use scrapbook templates, will surely inspire you to create more commemorative memory in minutes.";
fDesc[6] = "res. Present memories beautifully with a single click!";
fDesc[7] = "photos. Use your digital camera images to create a custom photo album. There are many user options available including a spin";
fDesc[9] = "users are able to create picture slides. You can improve pictures automatically or manually, remove red-eye effects, apply distinct effects, add frames and borders, fix colors, crop, add text captions, etc.";
fDesc[10] = "Photo Scrapbook. You can add unlimited users so your brothers and sisters can use it also";
fDesc[12] = "Career,Track where you hit the ball with the Spray Chart, Keep a Daily Journal, & build a Photo Scrapbook. You can add unlimited users.";
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 = '...';
}
}