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] = "from the preferences window (WinAMP, DirectShow, Avi Synth, and Global Keys). Now, there are many different interface skins ready to be downloaded individually from the developer's site.";
fDesc[4] = "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[5] = "for the Winamp skin folder, then specify Windows Media Player's skin folder, and the program will start the conversion.";
fDesc[6] = "Audio CD alarms, time zones, birthdays, calendar, countdown, and atomic time synchronization.";
fDesc[8] = "servers. It is able to replace the standard Windows clock in the system tray and uses Winamp skins for thousands of different styles.";
fDesc[9] = "Playback Quality, Skins , Equalizer, Playlist, freedb support, Sonique vis plugins, Winamp DSP plugins, File TAGS";
fDesc[10] = "look by skins.";
fDesc[11] = "Appointment Management system will help organizing your time and meetings. Clock Display is fully customizable and natively supports WinAmp skins";
fDesc[12] = "Windows.";
fDesc[13] = "background music to our web pages. Visitors of the web pages have an easy option to turn the music on or off any time. This tool is very simple to use and we don’t need any Flash or HTML knowledge to create the wonderful web based music players.";
fDesc[14] = "has an opportunity to choose a suitable field range, game rules and also to undo/redo the last action.";
fDesc[15] = "Digital speaking alarmclock using Winamp skins. Task feature makes messages using MP3, WAV, MIDI,opens applications/documents , and shuts down your PC at the specified time. Also there are calendar and horoscope";
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 = '...';
}
}