var fDesc=new Array();
fDesc[0] = "TMPGEnc KARMA..Plus is a video library management software.
Main features:
- Just drag 'n drop your videos into the appropriate category.
- Create a playlist and watch only what you want to watch.
- View up to 3 videos at once and find what you need fast.
- View two videos in split screen or overlay mode to compare and contrast their quality.";
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 = '';
}
}