var fDesc=new Array();
fDesc[0] = "With Neo Scene you will convert your difficult-to-edit HDV, AVCHD, DSLR camera footage to CineForm AVI (on windows) or MOV (on mac) files and then benefit from the same theatrical quality and real-time editing performance.
CineForm’s Neo Scene extracts 24p / 25p progressive frames from all your HDV or AVCHD material for editing in your favorite NLE.";
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 = '';
}
}