var fDesc=new Array();
fDesc[0] = "Adobe® Premiere® Pro CS5.5 software lets you edit faster with true native format support. Get breakthrough performance on workstations and laptops; streamline collaboration; and boost productivity with an efficient, robust, cross-platform editing workflow.
Edit faster with Adobe® Premiere® Pro CS5.5 software, which offers cross-platform, native file–based workflows as well as GPU-accelerated filters and effects with the enhanced Adobe Mercury Playback Engine now on workstations and laptops.";
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 = '';
}
}