var fDesc=new Array();
fDesc[0] = "ATP DVD Artist is a slick and powerful all-in-one solution to turning your digital videos and photo slide shows into professional quality DVDs. The program has a simple and self-intuitive user interface with most available options to be found on the main program screen. Practically the entire project configuration is done automatically to achieve the adequate video/audio quality of your DVDs.
With this tool you can convert MOV, AVI, FLV, MPEG-1/2/4, DivX, H.264 and other video formats to DVD, design a colorful DVD Menu in your favorite style, move video clips from one chapter to another with a simple drag-and-drop operation, merge your video clips into one contiguous, gap-free, DVD-compatible video, iInsert chapter markers and connect them to a DVD menu, insert additional next/previous markers the way you like, preview single video clips, chapters, or an entire DVD.";
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 = '';
}
}