var fDesc=new Array();
fDesc[1] = "capabilities like calendar, task, contact management, note taking, journal, and Web browsing. It can be integrated with Microsoft Exchange Server and Microsoft Office SharePoint Server to provide extended functions to multiple users in organizations.";
fDesc[2] = "helps you to protect your computer from spyware and other potentially unwanted threats. Its redesigned and simplified user interface makes common tasks easier but still ensures the user is aware of the most urgent alerts.";
fDesc[3] = "contact list, manage a household budget and keep up with your correspondence. Works gives you the basic tools you need to make your tasks easier from start to finish.";
fDesc[4] = "Tasks are reduced from multiple steps with the new task pane. The new version of Outlook condenses all your personal and professional e-mail into one central location, even your Web-based e-mail accounts like Hotmail.";
fDesc[5] = "photomontages, impressions and conversions of formats. Specifically, includes an image viewer with a presentation mode, an editor for adjusting levels of brightness, color and contrast, an editor of frames and masks to embellish your photos, and other effects";
fDesc[6] = "really easy-to-use since most of the utilities within the suite can be controlled and accessed through the Task Launcher homepage. The Works startup screen initially offers access to a calendar and contacts, but you can also view templates.";
fDesc[7] = "kind of tasks had to be done using DOS applications that required a great deal of know-how. Now, thanks to Partition Magic, users can create, delete, copy, merge, split, and format partitions and discs, and change their file systems.";
fDesc[8] = "Alt-Tab keystrokes have in Windows, with some additional features. You can customize the appearence of the program for each user, with different colors and fonts.";
fDesc[9] = "video recorded with a camcorder, upload a video to a portable device, or edit a project, MyDVD will allow you to do it, providing you with professional tools to create the perfect DVD for each ocassion.";
fDesc[10] = "effective way. Its new user interface is intended to make it easier to learn for new users and faster for experienced users. With this program you can stay informed and control project work, schedule and finances, and keep project teams synchronized.";
fDesc[11] = "delivery formats to suit the new media, such as interactive PDF format or Adobe Flash. Indesign allows publishers to create and submit compositions for printing.";
fDesc[12] = "Mozilla. Sunbird enables you to add reminders, set alarms, notes or tasks according to your routine in a wonderful and easy way. You can create calendars on your computer or create them online. You can view and manage reminders and tasks by months, weeks or daily.";
fDesc[13] = "include your notes, tasks, reminders. The program «feature» is its layer system – separate organizers functioning simultaneously. Excellent choice for a home user!";
fDesc[14] = "choose from many options to customize your characters such as gender, name, hairstyle and face. You can also choose a pet between a cat and a dog. This program has a good looking interface and it is really fun to play.";
fDesc[15] = "this kind that I have seen recently, RoboTask actually includes a large list of common tasks that you can add by simple double clicking. You don't have to use any coding or extensive commands.";
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 = '...';
}
}