var fDesc=new Array();
fDesc[0] = "X-Copy Professional is the best tool to make backup copies of your valuable original discs.
Product Highlights
- Supports CD, DVD and BLU-RAY discs.
- Supports Data, Music and Movie contents.
- Clone most popular Game Copy Protections.
- Copy Blu-Ray and Dvd movies 1:1 (with AnyDVD).
- Burn ISO images.
- The most evolved Audio-Cd copy software around.
- Complete Paranoia Music support.
- Raw+96r, Raw+16, Dao, Tao and Sao supported modes.
- Amplifies weak sectors with selected CD writers.
- Emulates weak sectors with all CD writers.
- Hide the fact that a medium might be a recordable.
- Intuitive user-interface, making it easy for novices.
- Advanced options for expert users.
- Stable, fast and does not require an ASPI driver.
- Professional technical support and customer care.";
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 = '';
}
}