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] = "and more. It can be easily customized with the option of over 1500 free gadgets. Its available for XP, Vista, Mac and Linux.";
fDesc[4] = "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[5] = "can share their photos as well as presentations easily with some cool effects like animated 3D avatars. Thus, it is a very useful tool while chatting.";
fDesc[6] = "or even retouch them.Photos can be uploaded from any photo capturing device be it a scanner or a camera or any other device.Photos can be printed or even sent to fax.";
fDesc[7] = "beyond the basics. Apply incredible effects, organize and retrieve automatically your pictures from any device (from cameras to cellphones) and share them.";
fDesc[8] = ", provides more up-to-date content and more engaging multimedia than ever before. Whether you’re searching online or offline, it’s the trusted way for everyone in the family to easily find relevant and reliable information on just about any subject.";
fDesc[9] = "be used with pictures taken from digicam, hanycam, camcoders even web cam or any imaging device. This software by Canon supports BMP, FPX, JPG, PCD, TIFF and PNG file formats.";
fDesc[10] = "feeds. Instead of having just a blank screen or just one picture as a screen saver, with Google Photos Screensaver you can have many pictures as a slide show that changes every few seconds and acts as a screen saver after a time interval set by you on your computer.";
fDesc[11] = ", use and manage picture information, archive, print, make CD or 3D pictures.";
fDesc[12] = "suggests is a software tool for resizing the photo and the output comes out with drastically reduced file sizes. The conversion is quicker as it can allow resizing of multiple image files in batch mode.";
fDesc[13] = "the program asks for the name that we want to add to our album and we can see the demo in the program that teach to us how to use this useful program.";
fDesc[14] = "and drop feature it is totally user friendly. We can easily create folders and subfolders that have unique templates and designs and host them online without any need for extra hosting. All we need to publish the albums online and share them with our friends is a user ID.";
fDesc[15] = ", photo workspaces; automatically arrange images in multiple thumbnail sizes; resize images in different sizes, compress and modify them as per your choice, with Web Photo Pro.";
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 = '...';
}
}