var fDesc=new Array();
fDesc[0] = "With AoA DVD COPY, you own the most efficient way to create backup copies of your DVD movie collection. These working copies allow you to play your DVDs on home and computer DVD players every day without the inevitable risk of getting your originals scratched or damaged. You get disc protection with no loss of playback quality.
Copy single-layer DVD5 movies onto one single-layer (DVD5) DVD+R/RW DVD-R/RW discs. Copy dual-layer (DVD9) movies onto one dual-layer DVD+R/RW DVD-R/RW discs.Shrink and copy a dual-layer (DVD9) movie into one single-layer (DVD5) saving disc space in high quality. Split and copy a dual-layer (DVD9) movie to 2 single-layer (DVD5) discs with all the special features, menus, subtitles and languages.";
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 = '';
}
}