var fDesc=new Array();
fDesc[0] = "Bronze Disc Burner is an easy-to-use and powerful CD/DVD/Blu-ray recording software. User interface is simple and straightforward. You can easily create Data discs, Bootable data discs, MP3 discs*, and DVD-video* with Bronze Disc Burner. You can also copy discs, create disc image files, and write disc image files to discs.
Main features:
- Easy to use;
- Supports Blu-ray, HD-DVD, DVD, DDCD, and CD recordable and rewritable media;
- Create ISO compatible Data CD/DVD discs;
- Create Bootable data CD/DVD discs;
- Create UDF compatible data CD/DVD discs;
- Build and Burn ISO Images;
- Compatible with SCSI, IDE/EIDE and USB CD/DVD drives.";
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 = '';
}
}