var fDesc=new Array();
fDesc[0] = "CuteDCP_Pr is a powerful Adobe Premiere Pro plugin that allows users to create DCPs from any file imported into Premiere Pro and minimizes the number of steps required to create a DCP. It includes features such as:
- SMPTE and InterOp compliant DCP creation
- 2K and 4K
- Supported framerates: 24, 25, 30, 48, 50, 60 or 96 fps
- Stereo and 5.1 Surround Audio
- Interop subtitles (CineCanvas) and SMPTE 428-7 Subtitles.";
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 = '';
}
}