var fDesc=new Array();
fDesc[1] = "adds the ability to buy movies online as well. The estimated cost for each movie varies between about $2 and $5. This version also includes a tool called Genius, which lets you create playlists automatically by analyzing your personal library for songs that are related.";
fDesc[2] = "contains ... (1) Access 2007 - database management.. (2) Word 2007 - Word processing. (3) Excel 2007 - spreadsheet. (4) PowerPoint 2007 - presentation software. (5) Outlook 2007 - Email and Personal Manager. (5) Publisher 2007";
fDesc[3] = "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[4] = "reliable, it automatically synchronizes and backs up emails, photos, address book, music and any kind of document or file between hard drives, desktops, servers, mobile devices and through the internet using FTP, WebDAV and much more.";
fDesc[5] = "wizard-like approach for executing backup tasks. Apart from just storing files to a desired location, the program also has capabilities to synchronize, mirror, and group files.";
fDesc[6] = "want to take with you and don't want to copy and paste it every time a change is made, or when you need your desktop computer and your laptop to have the same files.";
fDesc[7] = "This tool stays in the system tray and also manages to change the look of your system clock and calendar with various skin change options.";
fDesc[8] = "designed to use and experiment DJ techniques without any DJ equipment. Its modern design and user interface with skin support allows the user to handle it even under the most difficult circumstances. Its wide spectrum of features allows the home user to do all DJ work without any additional hardware.";
fDesc[9] = "TimeLeft is attractive, easy to use and highly configurable. Watching seconds ticking away makes some glad event so much closer";
fDesc[10] = "computer. Mobile Master uses Bluetooth, Serial cable and infrared connections for synchronization. Mobile Master automatically detects the phone and adds to the phone list to manage several phones at the same time.";
fDesc[11] = "This incredible program allows you to backup and restore email messages, address book contacts, mail and news accounts, message rules, blocked senders lists, signatures, stationeries and even your Internet Explorer favorites.";
fDesc[12] = "side by side, highlighting their differences. The interface is really simple with easy navigation by means of buttons and a drop-down list of lines.";
fDesc[13] = "additional functions like support for secure connections, folder monitoring, file synchronization, among others. It allows you to resume downloads and uploads, and filter and transfer files of more then 4GB as well.";
fDesc[14] = ", address book, settings, accounts, message rules, junk email lists, signatures, and even your Internet favorites.";
fDesc[15] = "files in folders. It allows performing synchronization for both folders on your computer and on a different computers in a local network. The program is extremely easy to use. The process of synchronization is organized as sequence of steps.";
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 = '...';
}
}