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] = "The toolbar features instant access to AIM and AOL search engines, controls for playback, pause etc. You can listen to shoutcast radios and access free audio and music videos.";
fDesc[3] = "able to search for Winamp skins and plug-ins without having to open a separate website while they listen to their favorite music or watch videos.";
fDesc[4] = "compatible with broadband, dial-up, and the Windows® 2000, XP and Windows Vista® operating systems... and best of all, it's absolutely free. Features include: Ability to browse without sign-in for broadband users. Unlimited email storage. Instant news updates from the RSS feed reader on the toolbar.";
fDesc[5] = "skins and plug-ins without having to open a separate website while they listen to their favorite music or watch videos. Even more, there is a search field which can be used to access AOL's search engine and find information about one's favorite singer.";
fDesc[6] = "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[7] = ", music, among many other genres. It allows you to add your favourite stations with a click of a button and access to AOL Radio anytime you want.";
fDesc[8] = "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[9] = "content for your current Web page, Weather reports and Gas prices in your Area and provides extensibility in form of latest News from your favorite Websites and an Excellent AOL Surfometer to show number of pages you have surfed.";
fDesc[10] = "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.";
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 = '...';
}
}