var fDesc=new Array();
fDesc[0] = "Studio Premium converts virtually all camera formats from HDV to 6K digital cinema, DSLRS, 3D cameras, and file-based formats including TIF and DPX into CineForm Digital Intermediate files for the highest quality editing, effects, and mastering workflows.
Studio Premium allows non-destructive primary color correction, image reframing and 3D adjustments without flattening those adjustments into the underlying video layer.";
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 = '';
}
}