var fDesc=new Array();
fDesc[0] = "Burn data to CD-R and CD-RW CDs, or rip MP3 or WAV files from your favorite music CDs. The Cheetah CD Burner also includes the ability to burn and write ISO files.
Features include:
Now supports BURN-PROOF for error free recording. This feature is automatically enabled if your CD Writer has this capability .
Writes .mp3 or .wav files on-the-fly as an audio disc.
Works with Windows 98/ME/NT/2000/XP.
Works easily with IDE and SCSI CDR/W drives.
Efficient buffering system.
Supports use of high write speeds.
ASPI not required for NT/2000.
Supports use of re-writable discs.
And many more...";
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 = '';
}
}