var fDesc=new Array();
fDesc[0] = "* Erase and format CD-RW, DVD+RW, DVD-RW media
* Burn an ISO image to recordable CD or DVD media.
* Burn a UDF image to recordable CD or DVD media
* Create and burn ISO formatted data disks to CD or DVD from files on the local machine
* Create and burn UDF formatted data disks to CD or DVD from files on the local machine
* Write audio disks to CD-RW or CD-R media
* Create audio "MP3" disks
* Rip audio from Audio disks and store the music in MP3 format
* Extract ISO images from data tracks on CD-R and CD-RW
* Copy a (non-copy protected) disc
* A top-level GUI application to provide all of this capabilty via a single application.
* Write video to DVD disks
* Write video to VCD disks (maybe?)";
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 = '';
}
}