var fDesc=new Array();
fDesc[0] = "HDTV2DVD is a new freeware tool to simply convert your HDTV material to DVD. HDTV captures are MPEG-2 Transport Streams at either 1280 x 720p or 1920 x 1080i resolution yet DVD is typically MPEG-2 Program Streams at 720 x 480 (for NTSC). This means that to play HD material on a "normal" DVD player you have to convert the source. This is what HDTV2DVD does in a simple, user friendly way.
Load up your HDTV file (.ts or .tp), start the processing and HDTV2DVD will produce a VIDEO_TS DVD folder ready for you to burn!";
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 = '';
}
}