var fDesc=new Array();
fDesc[0] = "Fiery® VUE is a visual, interactive printing application that helps office workers produce professional-looking, finished documents quickly, easily and cost-effectively in an environmentally responsible way.
Before printing, any office user can interact with the document on-screen in 3D to sculpt and then preview exactly how the finished document will look. This feature creates better looking documents, reduces waste and lowers overall costs.";
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 = '';
}
}