var fDesc=new Array();
fDesc[0] = "DVDit® Pro HD is a professional, studio-caliber DVD and Blu-ray Disc authoring tool for videographers, independent filmakers, corporate users and video enthusiasts.
Now Supports BD-50 + AVC, VC-1 and Multi-channel PCM pass-through!
CMF and AACS support for Blu-ray Disc replication
Author once and output to Blu-ray and DVD
Deliver 1080p. 1080i or 720p movies on Blu-ray Discs
Design interactive menus at full HD resolution
Drag and Drop HD Slideshows
Up to 8 uncompressed audio & 32 subtitle tracks
Professional mastering features for DVD and Blu-ray";
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 = '';
}
}