var fDesc=new Array();
fDesc[1] = "of satellite photographs. There are three versions, the free one for personal users, Google Earth (Enterprise) and Google Earth Pro. Many interesting features: Flight simulator, Sky and Mars, Street Views and 3D Buildings and the fantastic Google Ocean.";
fDesc[2] = "Google Talk that really kind of slowed the progress of the messenger down. Now, thanks to it, you can video chat and voice chat with all your contacts. They still have to download the plugin.";
fDesc[3] = "intuitive and easy-to-use, the interface is available in six languages. FLV-Media Player is a freeware, and its full version can be downloaded and used without any type of restrictions.";
fDesc[4] = "for all TCP connections (including IPv6) Configurable update speed makes it more user friendly and easy to customize.";
fDesc[5] = ", which you can use to keep track of your events if you have a Google account. It's a free software and runs on Windows, Linux and Mac";
fDesc[6] = "Google Video so you don’t need to use your web browser to do this anymore. This cool plug-in is available for free and is good to know that has been tested to work correctly with Google Desktop Search.";
fDesc[7] = "from the Google Desktop Sidebar. This plugin contains four basic functional buttons that we usually use. These buttons are play, stop, back and skip.";
fDesc[8] = "via Skype so you integrate the two of them simplifying the routinely tasks. This cool plug-in is available for free but is good to mention that it’s not a Google Tested gadget so some bugs can ruin the party.";
fDesc[9] = "But IPS GmbH came with a new service that allows you to track the traffic right from the desktop. And for that purpose they released a plugin that goes by the name of Google Desktop Plugin - IPS Website Counter 1.0, as the name suggests this plugin only works with Google Desktop.";
fDesc[10] = "after this gadget is to integrate Microsoft Outlook with Google Desktop Search in such a way that you have quick access and all-times visibility of your tasks and to-do lists.";
fDesc[11] = "to have a little brake from work. This cool plug-in is available for free but is good to mention that it’s not a Google Tested gadget so some bugs can ruin the party.";
fDesc[12] = "you’re currently watching so you don’t need to use your web browser and login into eBay anymore. This cool plug-in is available for free and is good to know that has been tested to work correctly with Google Desktop Search.";
fDesc[13] = "small plugin for Internet Explorer that makes it easier to search for the information that really matters to you. With a single click, ChunkIt! searches the contents hidden behind the links on any Web page to extract the valuable information, also known as \"chunks\".";
fDesc[14] = "different places across the world. The application is quite simple, it just shows you the time and date in the places you select on your desktop. The clock can be collapsed or moved from the main lateral bar to wherever you want.";
fDesc[15] = "draw, hop back to Yahoo!, and repeat on the next link. Browster, a free plugin for IE, lets you zip you through result lists and avoid the pogo stick ride. Just search normally, open the Browster window by mousing over an icon next to a link, and you can view every result link instantly by simply pressing Page Down, without ever leaving your search page. Browster works with your favorite search engines like Google and Yahoo!, shopping sites like eBay and Amazon...in fact, almost any list of links on the web. Unlike a conventional browser window, Browster is carefully tuned for giving you a quick peek at a web page, deciding if you want to stay, and if not quickly moving on. You can open and close it with simple mouse motions. No groping for the back button or the close box. So it saves you mouse mileage as well as time. And unlike thumbnail previews, Browster shows you pages full size...";
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 = '...';
}
}