var fDesc=new Array();
fDesc[1] = "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[2] = "all the functionalities of a typical mixer such as volume fader, mute, cross fader assignment, and additionally contains an MP3/WAV/Karaoke player, possessing all the expected controls including a Pitch/Tempo control.";
fDesc[3] = "directly into MP3. This powerful conversion tool supports a lot of languages, you will be able to install it in French, German, English, Spanish, Portuguese, Ukrainian, Russian, Deutsch and many other languages.";
fDesc[4] = "voice pitch. You control the program using the keyboard (cursor movement keys, Enter key, F2...). No mouse control here.";
fDesc[5] = "audio files from different sources, eliminate the lead vocalist’s performance from most stereophonic recording and synchronize the song lyrics with the `devocalized’ soundtrack.";
fDesc[6] = "Power Vocal Remover to create instrumental tracks from many CD recordings. Convert MIDI Karaoke KAR files into CD+Gs.";
fDesc[7] = "songs with the help of Power Vocal Remover, viewing soundtrack graph, synchronizing lyrics to the music, decreasing playback speed for better synchronization and more.";
fDesc[8] = "balance and changing the tempo rate of an audio file. Karaoke Sound Tool supports MP3, WAV and BIN file formats. Time line enable the user to modify particular or desired part of the audio file.";
fDesc[10] = "vocals from almost any song, saving then tracks ready to use in karaoke. Karaoke Anything! supports .mp3 files and regular CD Audio.";
fDesc[11] = "lyrics, even those that were not meant to be used in a Karaoke. But it works best with those that were designed specially for that purpose.";
fDesc[12] = "WAV or Mp3 files. The program allows you to import DOC files to use them as lyrics or to write them down by yourself on the program's main window.";
fDesc[13] = "karaoke discs, MP3+G , Zipped MP3+G, BIN (non-compressed CD+G), MIDI Karaoke, KMA files, or any multimedia file supported by Windows.";
fDesc[14] = "file formats that include: MP3, MIDI, KAR, WAV, WMA, AC3, OGG, MPA, MP2, AU, AIF, SND, etc., and video formats VCD, MPEG, AVI, WMV, ASF, OGM, DIVX, DAT, SVCD etc.";
fDesc[15] = "This tool allows you to play the following file formats: mid, kar, rmi, mp3, wav, wma, au, snd, wmv, mpg, mpe, asf, avi, cda. It features audio and video recording, a media library, and the possibility of turning on and off instruments in .mid files.";
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 = '...';
}
}