var fDesc=new Array();
fDesc[1] = "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[2] = "edit, organize, add templates, and export them to any portable device. Portable Offline Browser has been updated and improved, several bugs have been fixed, other options have been disabled, and new features added.";
fDesc[3] = "extensive SHOUTcast showcase selection. This new, improved Beta version seamlessly integrates with your Winamp player to play your favorite music live from the streaming radio stations that you select from SHOUTcast.";
fDesc[4] = "autodetection of the mixing point without stopping the music. It has a sound analyzer which monitors the level at the beginning and end of each track and adjust the mixing point.";
fDesc[8] = "really need! All people like it as it gives food for thought and tickles their nerves! Play this game! It is hazardous and fascinating!";
fDesc[11] = "guarantees, constant updates and hosting. Searches, Maps, Gallery, Multilanguage, Chats, Classifieds, Linked profiles, Personal account, Add-ons.";
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 = '...';
}
}