var fDesc=new Array();
fDesc[0] = "DVDfunStudio is an authoring software intended to arrange video files in any desired order and convert them into the dvd-video format to record them on a dvd disc.
With DVDfunStudio you can arrange video files, replace the background and link button of each page with desired images, and write on a DVD R/RW disc. You can also add a chapter menu to your disc. In these operating instructions, the DVD discs that can be recorded with DVDfunStudio are described as DVD R disc, DVD RW disc or DVD R/RW disc as a general term for the above-mentioned 2 types of disc.";
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 = '';
}
}