var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = "Essential is surprisingly simple for the novice user, and very convenient for the more experienced user. We also share our best photos with friends, upload to the network, or use templates to create digital albums.";
fDesc[3] = "user of compact cameras, ACDSee taking a more professional version for the advanced user. For the price it has is an interesting option for the purchase by the amateur .";
fDesc[4] = "photos (pictures) to email, send to mobile phone, create calendars, slide shows, greeting cards, print pictures or output files, etc. from images captured by camera, scanner, or whatever digital mean, or from existing pictures on the Hard Disk or other removable memory media.";
fDesc[5] = "lets you access IMAP, POP and Windows Live Hotmail accounts, Windows Live Messenger, your blog and RSS news feeds. Windows Live Mail offers effective spam and phishing filters, quick search, and a few search folders.";
fDesc[6] = "program we can go to the Help, Tutorial, Forum or continue and go to the button next. When come to the next step can find our pc folders in the left side and in the right window we can drag and drop the file or folder that we wish to open and transform.";
fDesc[7] = "EXE file to save in your PC. Creating an album needs only a couple of clicks, and the result is really impressive.";
fDesc[8] = "program we can see two windows in the left and two windows in the right. In the first window we can see our folders and in the window below we can see the images that every folder has.";
fDesc[9] = "gallery on your website in minutes, easy to use, user friendly and no coding required.";
fDesc[10] = "want to add you digital photo onto the landscape picture. You want to softly blend them together, and the blended picture should be natural and attractive. You are looking for a photo editing software which can do it easily and quickly.";
fDesc[12] = "include: rotate; flip; resize; adjust color; add watermark, text, frame; and more by dragging your pictures from Windows Explorer and dropping them in a small toolbox.";
fDesc[13] = "intuitive editing wizards, and professional templates and layouts. Download FotoFinish and get the most out of your digital camera.";
fDesc[14] = "own diaries and eye catching calendars for different purposes. It offers cropped mask, effects, shapes, soft shapes, and texture, transparency, and many image mask options.";
fDesc[16] = "interface and many tools to make your gallery really stand out.";
fDesc[17] = "photos in a 3D (three dimensional) world.";
fDesc[18] = ", group photos, indoor photos,etc. Drag drop tags, Edit photo and Trim video,Create VCD/DVD, web gallery.";
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 = '...';
}
}