var fDesc=new Array();
fDesc[1] = "more from their player. Its forward backward button option, media library, online music search option, minimode are very useful additions. All this packed in a simple interface and makes it a great media player to work with.";
fDesc[2] = ", find, and share your notes and information more efficiently and effectively. The program features powerful search capabilities that help you locate information quickly and easy-to-use shared notebooks that allows you to manage information overload, whether online or offline.";
fDesc[3] = "photos with friends and family is as easy as pressing a button!";
fDesc[4] = "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[5] = "and more. It can be easily customized with the option of over 1500 free gadgets. Its available for XP, Vista, Mac and Linux.";
fDesc[6] = "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[7] = "secure and customize your mail. The program features many new enhancements to help you better manage your inbox, and keep your vital information organized.";
fDesc[8] = "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[9] = "and video libraries and download online information about the artists. Besides, you can create photo slide-shows and edit your videos with special effects.";
fDesc[10] = "import your photos and videos from digital cameras, camcorders, CDs, DVDs, and Windows Live Spaces. Moreover, with this incredible program you can enhance your photos with easy-to-use tools for adjusting exposure, color, and for removing red eyes.";
fDesc[11] = "eye on human photos or green eyes on pictures with animals. You can also denoise low-quality photos made from cameras from digital telephones. You can create СD labels and print them. You can also create slideshows and copy them to discs.";
fDesc[12] = "currently used applications. It also offers you many features such as a calendar, web search widget and a click. Object Dock allows you to fully customize the dock, its position and many options and effects.";
fDesc[13] = "organize, browse, locate, and view creative assets. Bridge provides centralized access to project files, applications, and settings, as well as XMP metadata tagging and searching capabilities.";
fDesc[14] = "searching for a particular folder in a hurry. Having color-coded folders makes it much easier to find the needed one and you don’t waste your time at unnecessary search";
fDesc[15] = "digital images. You can download your images from your camera in a few seconds. Then, you can create slideshows with background music or add special effects to your photos. Finally, you can send your photos by e-mail to share them with your friends.";
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 = '...';
}
}