var fDesc=new Array();
fDesc[1] = "favorite audio files. It is very easy to use with very comprehensive functions for the management and playback of audio files.";
fDesc[2] = "is a very easy to use program in which you can tag your files getting tag information from several sources. As many other tagging solutions tag retrieval is available from freedb but is also possible to retrieve tags from amazon.com, amazon.de and discogs.";
fDesc[3] = "players, display information about your songs like song name, artist, genre, year, etc. Stamp ID3 Tag Editor allows you to change that information.";
fDesc[4] = "arrange, list and classify all your Mp3 files stored in your PC. That's why Zortam Mp3 Media Studio has many built-in features like: Search Media, Mp3 Tagging, Autotag, Cd ripper, Wav/Mp3 Converter, etc.";
fDesc[5] = "Database), audio player, audio editor, ID3 (metadata container) Tag editor, CD creator, lyrics editor and album cover image editor. Available for: Microsoft Win98 / NT / ME / 2000 / XP / Vista.";
fDesc[6] = "record any external sound by using a microphone or other device and save the result as a WMA, OGG, Mp3, APE, FLAC or WAV file. The program enables you to record any sound directly from a sound card.";
fDesc[7] = "options such as ID3 tag editor, CDDB support, Bitrate settings, VBR quality, M3U playlist support. The program doesn’t require extra install or some external codecs.";
fDesc[9] = "connected to the Net, the program will automatically connect to a database and import MP3 tag data based on track properties.";
fDesc[10] = "tags, mp3tag Pro will make folders for every genre, artist, album, and so on, depending on your choice. Files will be sorted into the corresponding folders. With mp3 tag pro you can get full control over ID3 tags and can organize your music collection.";
fDesc[11] = "prepare your MP3 files for subsequent CD burning and properly label each and every file. It supports CDDB, renames files based on rag information and generates tags from file names.";
fDesc[12] = "player and by just pressing one key you will be able to enjoy the music. It allows the user to convert MP3 files into wave file format, write id3 tags, and add, delete and save break points.";
fDesc[13] = "collections. With MP3 Tags Editor, you can edit music tags, rename audio files, folders, export data to various formats, save music playlists...";
fDesc[14] = "formats which are the most common audio formats. It helps you to merge many small songs together to make a big audio file without any quality loss, with high precision. It is supported on Windows 9x/Me/2000/XP/2003 operating systems.";
fDesc[15] = "tags, managing M3u playlists, renaming files using ID3 tags, searching for duplicate MP3 files on your hard disk, listening to MP3 files using your favorite MP3 player and much 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 = '...';
}
}