var fDesc=new Array();
fDesc[1] = "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[2] = "Samsung mobile phone and your PC. It offers many features such as a Networking Wizard, which allows you to connect to the Internet; a Multimedia Player to play different files; and many other options to manage and organize your files, your phone contacts and your messages.";
fDesc[3] = "a phone, back up and restore phone data, import and export contacts and calendars. This program can use the mobile phone to connect your PC to the Internet.";
fDesc[4] = "This version also added full support for Blu-ray AACS MKB15.";
fDesc[5] = "favorite audio files. It is very easy to use with very comprehensive functions for the management and playback of audio files.";
fDesc[7] = "SMS, backup your data, create original rigtones or copy YouTube videos right to your phone and much more.";
fDesc[8] = ", Window mobiles, Ipods and many other multimedia players. The converter has a built in video editor, cutter and merge tool that enable you to zoom, crop or trim any video. You can also add watermarks or subtitles to the video file using the built-in powerful editor.";
fDesc[9] = "brightness settings for many PC image file formats, and send the resulting image directly to your phone. Modem drivers for Sony Ericsson phones (included in this package to make IR communication easier with T68 and T300 on XP (XP will look for a modem to install when the phone is placed at the IR eye and this will happen everytime if no modem is found))";
fDesc[10] = "mobile phones. It is free sound editing application that has many useful features and filters for editing or enhancing your sound files. This software allows recording and editing audio files on your computer.";
fDesc[11] = "audio files. Create mobile movies from your video collection, and picture slideshows or mobile wallpapers from your photo collection. Edit files and easily customize tracks for your polyphonic compatible phone.";
fDesc[12] = "Whenever we take photos with a mobile phone camera, we have to face vignetting, poor color appearance, poor sharpness & contrast, and also JPEG compression artifacts related issues with our photos, so these photos are not perfect for albums,";
fDesc[13] = "files to disc, or create your own music and songs.. The main menu of the program offers you six different utilities, each one aimed at a specific task.";
fDesc[14] = "receive incoming calls, messages,etc. This incredible program features an intuitive and easy to use interface that enables you to change and customize anything you want in just a few minutes.";
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 = '...';
}
}