var fDesc=new Array();
fDesc[1] = "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[2] = "The connections it offers are stable with almost no disconnections. It supports all the Cisco VPN infrastructure and its hard to go wrong with this client.";
fDesc[3] = "images and movie clips. It’s new and improved tools helps you to edit, enhance and give a new look and glow to your photos. The browser supports a variety of image, sound and video file formats and helps to give a new look and glow to your photos.";
fDesc[4] = "program, every time when you connect player to the computer, will start up offering you to check if there is any media files on the drive. The program has handy interface.";
fDesc[5] = "works in both CDT and LCD monitors. It lets you change the color preferences of your monitor by setting custom gamma levels or loading a default profile, which is automatically applied to your screen.";
fDesc[6] = "restrictions and unlock Nokia, Samsung, Siemens, Maxon, NEC, Sony, Panasonic, Vitel, AEG / Telital, Alcatel cellphones.";
fDesc[9] = ", logo, tone, photo, multimedia browser, Java application download. Connection method supported: Data Cable, IrDA, Bluetooth.";
fDesc[12] = "monitors, through the buttons on the front panel; but if you find it difficult to use them, then this program will be helpful. The program offers predefined modes and saves custom presets.";
fDesc[15] = "for Samsung can be used for video presentation, to see your favourite TV series on the way and especially for people who are always on the go. It enables you to take your favourite video to your journey or business trip.";
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 = '...';
}
}