var fDesc=new Array();
fDesc[1] = "ITunes over Windows XP. The actual versions of ITunes include this application, so there is no need to download it separately unless you have an old version of it.";
fDesc[2] = "java programmes and should be installed to run java programmes. It comes with a bunch of very handy new features which enable to develop java programmes with high quality.";
fDesc[3] = "notification. You can manage all of your conversations in a single message window. Besides, you can send your friends an SMS from your PC with ICQ. Your friends can SMS back from their mobile directly to your ICQ message window.";
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] = "synchronization experience with Windows®-powered PCs and Microsoft Outlook right out of the box. Note: Microsoft ActiveSync works only with Windows XP SP2 or earlier.";
fDesc[6] = "hardwares. Generally, the blurtooth devices come with a driver cd where you have this program. BlueSoleil BlueSoleil 6.4's default view is the \"Bluetooth Places\" which is like the Nokia PCSuite's Windows Explorer extension. \"Search Devices\" icon can be run for finding bluetooth devices.";
fDesc[7] = "just in beta version. This program-client provides access to the music online shop Nokia Music Store, lets you organize, discover and download music, create playlists and then copy it to mobile device.";
fDesc[8] = "support for Windows Mobile 5 and 6. Thanks to this application we can keep updated our PDAs or Smartphones with our Home or Work PC, in order to keep always our pictures, emails, calendars and contacts in both.";
fDesc[9] = "it, then AVS Video Editor is one of the best options you could choose. This easy to use and powerful video editing tool will let you to import your home videos, sounds, images, create movies, apply many transitions and video effects, and even save your projects as professional DVD videos.";
fDesc[10] = "Adobe® Premiere® Pro software. Tell your story with maximum impact using Adobe® Premiere® Pro software, the start-to-finish solution for efficient video production.";
fDesc[11] = "video conversion. Easy to use. Supports batch and merge conversion modes. Converts all or only a segment of the input file. It has options to preview the converted video and to automatically shutdown your computer once the conversion has been completed.";
fDesc[12] = "Web. Photo DVD Maker has been designed to be easy to use by anyone. Create dynamic slideshows in three steps: Add photos, design movie menu, and burn discs. All tasks can be done in an intuitive way.";
fDesc[13] = "popular portable and mobile devices, with free updates to others as they become available. Access your files quickly and hassle-free from any source including your PC, digital camera, portable devices, and from online communities.";
fDesc[14] = "time. This application supports a lot of video and audio formats, including MP4, MPEG, VOB, AVI, DIVX, XVID, MPG, RM, FLV, 3GP, 3G2, IFO and many more.";
fDesc[15] = "the program is mainly created for S60 devices. The program seems to support 1000 customizable theme elements in the S60 User Interface.";
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 = '...';
}
}