var fDesc=new Array();
fDesc[0] = "6 stand alone programs included:
ASPI Rip - Rip CD, Encode files to MP3 or Ogg also records inputs plus tags and renames files.
Audio Editor- Record LP's or Tapes,Visual audio editor and auto file splitter that finds gaps and splits files..
Auto Rec - automated recorder for LP and Cassette ripping and or gap less recordings.
JukeBox Decoder- Decode MP3 / Ogg / WMA to Wave with many options or Play MP3 / OGG / WMA files in full featured player, full featured ID3 Tagging and file naming, album file creation to join MP3 files, 1 octave 10 Band Equalizer, and loads more functions.
Analog Rip - alternative to ASPI ripping just in case.
CD ini editor - edit cd player.ini file, merge and delete entries, lookup batch of CD's at freedb.org in one connection and store info locally.
Suite of 6 programs provides a wide range of functions without all being in one huge program.
All programs interact with each other.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}