var fDesc=new Array();
fDesc[1] = "source codecs like Ogg vorbis. With the built-in utilities like library manager, music ripping and burning to CDs and its great playback quality, it is indeed a great music player to have.";
fDesc[2] = "Share your movies all over, on iPods, YouTube, or the new HD home theater systems, with full support for discs as AVCHD, Blu-ray and HD DVD.";
fDesc[3] = "formats (Direct CD, InCD, DLA, and Instant-Write) and is capable of performing surface scans, accessing data that Windows simply cannot read.";
fDesc[4] = "GoldWave, a very advanced program that will help you perform from simple to complex audio projects. With this application you will be able to play, edit, mix, restore and apply many audio effects to your files that will let you get professional results.";
fDesc[5] = "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[6] = "things. First, it allows you to cut or split MP3 files. So, if you have a file which you need to split in two or more parts, while conserving the audio's quality, you can use this one to do it.";
fDesc[7] = "karaoke formats. Kara Fun offers an in-built karaoke editor to create exotic karaoke music files with custom pictures or video. Kara Fun offers an in-built format conversion tool that can convert any video file to AVI or WMV and any audio file to WAV or WMA using single click.";
fDesc[8] = "Windows. It basically gives you the ability of creating and modifying ID3 tags right within Windows Explorer. It adds two new tabs to the properties dialog of the MP3 files. From there, you can add information about your MP3 songs.";
fDesc[9] = "efficient converter. By allowing you to select any of the four formats supported as the output format, you can keep the length of the file intact and save it using a different codec. It allows you to pre-listen to the fragment you want to cut, or to the whole file.";
fDesc[10] = ", stop, rewind and forward any audio file using the play control. You can cut, copy or paste any part of the audio file or use the recording tool to record your own voice and mix it with music tracks.";
fDesc[11] = "you can keep your music collection organized with Tag&Rename since it is the only tag editor and organizer which has full native support for: mp3 (ID3v1, ID3v2.2, ID3v2.3 and ID3v2.4 tags), MusePack mpc/mp+ (APEv1, APEv2 and ID3v1 tags), Windows Media wma, asf and wmv files, Ogg Vorbis and Flac (vorbis comments), Apple iTunes and iPod aac (m4a) files including mp4, lossless m4a and protected m4p files, most popular lossless codecs including monkey's audio, wav pack, optim frog, flac, Apple and Windows Media lossless. Tag&Rename supports many additional tag fields including lyrics, cover art, rating, mood, disc #, classical music fields (Composer, Conductor, etc.), file related URLs and so on.";
fDesc[12] = "sound files for music CDs, dance programs, websites, answering machines, Windows sounds, and much more. It includes a lot of of effects and editing features for professional sound production.";
fDesc[13] = "high-quality MP3 files without re-encoding, with the same quality and bit rate of the original files, even if it is variable (VBR). Performance speed is certainly one of its main assets, even when splitting large MP3 files (up to 2GB).";
fDesc[14] = "various features like professional tools for recording, analysis and editing. The graphical user interface is speedy, accurate and easy to use. The audio editing lab integrates a huge range of high quality audio tools";
fDesc[15] = "your Stereo Equipment, Importing Audio Tracks from your CD´s, etc. In one word, this tool is a sound editor program for Windows. You can also edit your voice and another sounds recordings and if you want it you can also add some sounds effects.";
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 = '...';
}
}