var fDesc=new Array();
fDesc[0] = "ACE-HIGH CD Ripper supports ripping your audio CD tracks to audio files of MP3, WAV, WMA, or OGG on-the-fly. It works on Windows 98/ME/NT/2000/XP and works easily with IDE and SCSI drives without ASPI SDK needed.
With a built-in CD player, you may highlight the CD track in the list and press the play button to play it.
With a built-in ID3 Tag editor, you may double click each file to edit its ID3 properties including "title", "album", "author", and so on. When they are ripped to MP3s, the ID3 tag information would be written into them.";
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 = '';
}
}