var fDesc=new Array();
fDesc[1] = "lets you access IMAP, POP and Windows Live Hotmail accounts, Windows Live Messenger, your blog and RSS news feeds. Windows Live Mail offers effective spam and phishing filters, quick search, and a few search folders.";
fDesc[2] = "user to arrange the buttons, the toolbar language, sets up all the toolbar services, shows all the services: search, map search, desktop notes and weather, radio and mp3 player, screensaver and wallpaper, skins and cursors, smileys and eCards, etc.";
fDesc[3] = "phrase related to the file name or application name and Quickfind shows all the related files to that name or word.Just double click the desired file and Quickfind will launch it immediately.Quickfind also enables the user to open web addresses added to the favorites .";
fDesc[4] = "distributes virus or spyware. When you are browsing the web you may enter a web site infected from virus or a web site that can send trojan horses and tracking cookies like malware to your PC. ZoneAlarm Spy Blocker warns you against such sites.";
fDesc[5] = "consulting targeted search engines and information sources on the Web. The Quick Search allows you to search for an expression in a wide range of search engines.";
fDesc[6] = "has a very comprehensive interface and can be used in 17 languages. You will be able to catalog physical books, as well as audio books and e-books.";
fDesc[7] = ", which allows you to search any theme you are interested in, and the Verse Guide feature, whith a graphic interface which lets you find any verse quickly and easily.";
fDesc[8] = "iPod and your PC. This incredible program enables you to efficiently manage your iPod contents and transfer videos, music, photos, podcasts and TV shows from your iPod or iPhone to your PC easily and fast.";
fDesc[9] = ", Internet surfing is made easy and fast. The browser also blocks adware, spyware and all kinds of pop-ups. It is much more advanced than other surfing browsers, and consists of inbuilt translation engine, dictionaries and a quick search bar.";
fDesc[10] = "the future, with quick and easy one-click access to LinkedIn - save and return to profiles of interest, see connections at any hiring company, get introduced to hiring managersinclude HotJobs, Monster, Craigslist, CareerBuilder, Simply Hired, Dice, and Vault)";
fDesc[11] = "iInternet. What this program does is to search for servers running all time favorite games and join them with only a simple click.";
fDesc[12] = "web bookmarks in seconds. I have used many application launchers including some popular ones like launchy, Symbol Commander and MGlaunch and they work perfect but the simplicity and power of Quick Start is unbelievable";
fDesc[13] = "messages. When creating a new message it is possible to attach files, check spelling, utilize a signature, and encrypt the information. It supports Unicode characters. Also you can manage your contacts and schedule events with the Calendar.";
fDesc[14] = ", click replace and done. Quick Search and Replace fully supports any ASCII text based documents.";
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 = '...';
}
}