var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "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[4] = "most common compressed archives including ZIP, RAR and 7z. QuickZip is a FREE alternative to WinZip, WinRAR and PowerArchiver. Although its interface is not the paradigm of beauty, QuickZip is powerful, full featured and has lots of tools like Search in Archive, Archive Finder, etc.";
fDesc[5] = "stations. This program is easy to use, and it has a very simple simple interface and multilanguage support. You simply select the country in which you're interested in the left pane, and the television channel or radio station you want to hear.";
fDesc[6] = "viewed, documents history etc.) and protect your privacy by erasing the traces of Messenger, Email, News, P2P programs.";
fDesc[7] = "Internet activity and improve system performance. Get East-Tec Eraser 2007 today!";
fDesc[8] = "basic Winamp commands: Play, Pause, Previous, Next, Volume, a \"Show Winamp\" button, and a little file progress bar in the top. It's very tiny, and very easy to use.";
fDesc[9] = "changed to look exactly like Windows Vista and there are other tools and features which will simulate the wonderful performance and appearance of Windows Vista.";
fDesc[10] = "look by skins.";
fDesc[12] = "and more.";
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 = '...';
}
}