var fDesc=new Array();
fDesc[0] = "The professional's choice for complete CD and DVD replication and mastering!
Main Features:
- Convert CDs and DVDs to DDP images
Deliver your master to a replication facility via computer or network drive, or FTP the image.
- Convert DDP images to CD and DVD discs
Burn your own ‘Check Disc’ before sending off to replication
- Burn Disc Images
Use GEAR PRO Mastering Edition 8 to burn .iso images to multiple recorders similtaneously!
- Duplicate CDs and DVDs
Create inexpensive duplication workstations to accurately format masters for fast mass replication. Match your master precisely!
- Record a GEAR Project to multiple drives
Record one or more GEAR Projects to separate drives simultaneously";
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 = '';
}
}