var fDesc=new Array();
fDesc[0] = "PhotoPRINT offers the industry-leading Print & Cut workflow, now made even better! Progressing along with the large format industry, PhotoPRINT is designed to help your productivity ascend to new heights while maintaining SAi’s signature ease-of-use interface. PhotoPRINT ... More Than Just A RIP!
The complete client-server RIP solution package includes extended capabilities and cost-saving features. Additional features include an EDITOR station for layout and design and Color Profiler for output profile creation and editing.";
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 = '';
}
}