var fDesc=new Array();
fDesc[1] = "such as keeping your contacts database, your task list and appointments synchronized. MyPhoneExplorer has several tabs which are: Contacts, calls, organizer, messages, files and other. In each of these you can manage different parts of you mobile phone.";
fDesc[2] = ", Drive Images, Zip/Jaz Drives, Compact Flash, Smart Media, Secure Digital, and USB Flash Cards.";
fDesc[3] = "defraging the drives and consolidating the disk free space. The application defrags the units in different ways: Automatically and Manually (user turns on/off the process).";
fDesc[4] = "for non-experts, it has numerous utilities to edit images in a personalized way. However, the amount of tools offered may be confusing to users who have had no previous contact with basic image editors.";
fDesc[5] = "almost the same way as Photoshop with similar support for pressure sensitive tools. But Painter also emulates the visual characteristics of traditional art painting such as oil paint, pastel sticks, charcoal, etc. supporting several textured surfaces.";
fDesc[6] = "manufacture of chocolates. You’ll have to learn to produce chocolates, get recipes, negotiate with dealers, and go travelling around the world to get some exotic ingredients and hard-to-find recipes. It's a strategy game in which you will be receiving several missions to accomplish.";
fDesc[7] = "and allows selecting from different rotation angles (0, 90, 180 and 270 degrees) and includes the possibility of HotKeys for each of the turn options. It is compatible with Windows 98 SE / Me / NT4.0/2000/XP Home Edition / XP Professional.";
fDesc[8] = "or adding new text or object to it. The application also gives user the liberty to resize images, trim excessive wasted space, flip the objects or change the effects.";
fDesc[9] = "critical performance issues in your web site or web server that may prevent optimal experience for your site's visitors.This incredible software allows you to test your web server performance under normal and excessive loads.";
fDesc[10] = "task will take place between daily, weekly, monthly, CPU usage, while idle, and once. We can choose the start date, and one of the following actions: power off, restart, log out, hibernate, standby, turn monitor off, lock workstation, or open screensaver.";
fDesc[11] = "with your digital camera. 2. a 'copy-to' option, to quickly copy a file to another folder. 3. slide show option.";
fDesc[12] = "and flames, fireball traces and amazing effects over the background and opened windows. Besides, the screensaver is highly configurable: you can specify the amount of fireworks, explosions and fireballs, and sound looks pretty real.";
fDesc[14] = "required.";
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 = '...';
}
}