var fDesc=new Array();
fDesc[1] = "utilities as Word 2007, Access 2007, PowerPoint 2007 and others. It allows users to input data into cells included in a grid made of rows and columns.";
fDesc[2] = "of publications and marketing materials. Unlike many other Office's applications, Publisher 2007 does not have the new Ribbon fluent user interface and it still looks pretty much the same as the previous version.";
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] = "download games to enjoy, and share them with others. You can actually share any digital file, including images, audio, video, software, documents, etc. The latest version supports BitTorrent protocol and Shoutcast radio stations.";
fDesc[6] = "utility developed by Microsoft Corporation to upload and share any type of files, like photos, music, documents, etc, with your family and friends through SkyDrive.";
fDesc[7] = "such as audio, video, images, program, documents, and other files, with users all over the world. LimeWire has been recently updated and now it features a smarter colorful interface.";
fDesc[8] = "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[9] = "possibilities, which include: Servers, web based, and Kad. It is a completely free of charge application also free of adware, spyware and any other kind of intrusive programs.";
fDesc[10] = "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[11] = "files with other users in the fastest way via Gnutella network. We can share all types of files, including audio, video, programs, images, documents, etc.";
fDesc[12] = "HP Image Zone Express application program provides functional capabilities of editing and printing photos. Besides, this program provides the access to HP Instant Share program, where you can quickly share photos with other users.";
fDesc[13] = "digital cameras, but the application can be used by anyone. Version 7.1 adds several new features. The first one is the ability to tag pictures. By tagging a picture, you give it a keyword, which you can later use to find pictures.";
fDesc[14] = "started quickly with easy moviemaking options; show your style with amazing audio and video effects; and share your movies virtually anywhere. You can create, customize and share movies.";
fDesc[15] = "organize TV channels, radio stations, music, photos and videos, share multimedia files through the home network to other computers using Universal Plug and Play technology, also converting and real-time transcoding media formats automatically for any device.";
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 = '...';
}
}