var fDesc=new Array();
fDesc[0] = "With Instant DVD Recorder it is incredibly fast and easy to transfer video footage from your camcorder to DVDs. All you need is a PC equipped with a video capture device and a DVD burner.
Main features:
- Simple Sharing and Safe Archiving: burn all your movies on long-lasting DVDs that can be played on any home DVD player.
- Easy Movie Viewing: choose a menu template out of the various proposed styles to create a professional-looking DVD and access the chapter marks that have been set thanks to the automatic scene detection.
- Fast Process: creating a DVD couldn't be faster - connect your camcorder or VCR to your PC and click one button. The video goes straight from the tape to the disc, without storing anything on your computers hard disk.
- No Experience Required: the software Wizard guides you through all the steps-from capture to menu creation to burning. Anyone can do it in a few minutes.";
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 = '';
}
}