var fDesc=new Array();
fDesc[1] = "screen and a small window appears with the relevant text translation, information or conversion that you need without interrupting your workflow.";
fDesc[2] = "(enhanced by Google), so users can easily search the web right from the AOL toolbar without having to open another window. There's also an AOL and AIM email preview, so users can quickly check their Inbox and send messages to their contacts.";
fDesc[3] = "of related words, with one-click look up in almost any Windows program. The database has over 150 000 root words.";
fDesc[4] = "Opera etc, but the new release by Mozilla, \" The Cometbird\", pushes the limits of web browsing. Cometbird offers in-built download manager. Cometbird enables the user to download videos from Youtube or any video, audio without using any extra tool.";
fDesc[5] = "over the world. You can search for stations by keyword or simply search by music genres included in the toolbar such as Rock, European, Dance, Pop and Hip hop.";
fDesc[6] = "any text in any desktop application. Translations and dictionary results are retrieved by default from the Babylon translation database, but you can expand the scope of your search and get more results by adding new dictionaries";
fDesc[7] = "www.Wikipedia.org without taking the trouble of going to your favorite search engine. This incredible software is completely integrated into your browser, and the only thing you have to do is type the keyword in the search box and you instantly get the information you want in Wikipedia.";
fDesc[9] = "program has a bookmark function, Google and Wikipedia search boxes. You can check your e-mail inbox via clicking the email icon.";
fDesc[10] = "does, is basically connect to websites such as National Geographic, Earth Science, Astronomy, or Wikipedia, to bring to our computer the most beautiful images available.";
fDesc[11] = "all the .NET frameworks needed, the application runs really good. This client connects to wikipedia.org and can retrieve any article published therein. The graphical user interface is pretty simple.";
fDesc[12] = "includes WikiResearch, WikiSearch, WikiBrowse, WikiBrowse Search Bars and Shell tools. Its GUI is simple and easy to use. Its installation process is easy to perform. Its documentation is not very detailed. WikiProject works in Windows platforms.";
fDesc[13] = "celebrities right in your browser. You can add as many celebrities as you want, as well as links to your favorites sites such as Youtube, Wikipedia, Mapquest, Facebook, IMDB, MySpace, Amazon, among many others.";
fDesc[14] = ", this tools is a perfect add on for every Wikipedia's fan.";
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 = '...';
}
}