var fDesc=new Array();
fDesc[1] = "(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[2] = "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[3] = ", readit's, and other portals. Stumbleupon allows you to rate any website that you want. The feedback that you give a site will be sent to all the users who are connected to the Stumbleupon service.";
fDesc[4] = "option to choose. This browser is based on Mozilla technology, and includes many extensions that will provide you with cool options to make your surfing experience more enjoyable.";
fDesc[5] = "search field (enhanced by Google), so users can easily search the web right from the toolbar without having to open another window. There's also an AOL and AIM email preview that allows users to quickly check their Inbox and send instant messages to their buddies.";
fDesc[6] = "provides instant access to all AOL services and features such as mail, Instant Messenger, and much more. It includes a surfometer that shows you the number of webpages visited and enables you to add the buttons your want to your bar from its button gallery.";
fDesc[7] = ", in this case) to move from one point to another, avoiding them to result killed by falling, being burned and other dangers.";
fDesc[8] = "common search operations from a single graphical interface. You can search for videos, music, friends, news, and more. You can search for videos on popular sharing sites like Youtube and metacafe.";
fDesc[9] = "Election. It provides instant access to the latest political news, separating them by the two candidates: Barack Obama and John McCain. It also give you access to he Daily Straw Polls in order to vote daily.";
fDesc[10] = "in a better way. This browser gives you one click access to many search engines such as Google, Live Search, Yahoo, Digg, Ask, Magnolia, Wink, Simpy, Snap, etc. It also provides you world search on local search engines of countries";
fDesc[11] = "your visitors can easily add your site to social bookmark sites. You have probably seen the sites that have a sort of menu in which you can click a service, and the website you were in gets submitted. Well, this application generates buttons like those.";
fDesc[12] = "Linux distributions. Digg is a web service that allows users to rate stories found on the Internet. They can also rate pictures, videos, etc. If you go to Digg.com, you can browse through a lot of content, and the most popular content will appear first.";
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 = '...';
}
}